]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LeiWatch.pm
imap+nntp: share COMPRESS implementation
[public-inbox.git] / lib / PublicInbox / LeiWatch.pm
1 # Copyright all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # represents a Maildir or IMAP "watch" item
5 package PublicInbox::LeiWatch;
6 use strict;
7 use v5.10.1;
8 use parent qw(PublicInbox::IPC);
9
10 # "url" may be something like "maildir:/path/to/dir"
11 sub new { bless { url => $_[1] }, $_[0] }
12
13 1;