blob: f96dc4ec9d5a9b1a1ae7e9644bd1e924cbb0246c [file] [log] [blame]
# Copyright all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
package PublicInbox::LeiLsWatch;
use strict;
use v5.10.1;
sub lei_ls_watch {
my ($lei) = @_;
my $cfg = $lei->_lei_cfg or return;
my @w = (join("\n", keys %$cfg) =~ m/^watch\.(.+?)\.state$/sgm);
$lei->puts(join("\n", @w)) if @w;
}
1;