]> git.proxmox.com Git - pmg-api.git/blob - PMG/RuleDB/ReceiverRegex.pm
fix schema definition
[pmg-api.git] / PMG / RuleDB / ReceiverRegex.pm
1 package PMG::RuleDB::ReceiverRegex;
2
3 use strict;
4 use warnings;
5
6 use PMG::RuleDB::WhoRegex;
7
8 use base qw(PMG::RuleDB::WhoRegex);
9
10 sub otype {
11 return 1009;
12 }
13
14 sub receivertest {
15 return 1;
16 }
17
18 1;