ae8adc41a2
git-svn-id: https://svn.perl.org/qpsmtpd/branches/v010@32 958fd67b-6ff1-0310-b445-bb7760255be9
18 lines
185 B
Perl
18 lines
185 B
Perl
package Qpsmtpd::Plugin;
|
|
use strict;
|
|
|
|
sub new {
|
|
my $proto = shift;
|
|
my $class = ref($proto) || $proto;
|
|
bless ({}, $class);
|
|
}
|
|
|
|
|
|
|
|
sub register_hook {
|
|
warn "REGISTER HOOK!";
|
|
}
|
|
|
|
|
|
1;
|