1 # Copyright all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # represents a Maildir or IMAP "watch" item
5 package PublicInbox::LeiWatch;
8 use parent qw(PublicInbox::IPC);
10 # "url" may be something like "maildir:/path/to/dir"
11 sub new { bless { url => $_[1] }, $_[0] }