summaryrefslogtreecommitdiffstats
path: root/perl/rspamd.pm
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2008-08-19 19:46:10 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2008-08-19 19:46:10 +0400
commit86fd197a95f72d09e5cccbc059829ff5f6b03b87 (patch)
tree5c6ca0c98bde0b2a6703f30283ba33bb393fc7b8 /perl/rspamd.pm
parent4fcd073731ec81987c662e04b480846634e71c59 (diff)
downloadrspamd-86fd197a95f72d09e5cccbc059829ff5f6b03b87.tar.gz
rspamd-86fd197a95f72d09e5cccbc059829ff5f6b03b87.zip
* Add initial implementation of rspamd XS module
Diffstat (limited to 'perl/rspamd.pm')
-rw-r--r--perl/rspamd.pm30
1 files changed, 30 insertions, 0 deletions
diff --git a/perl/rspamd.pm b/perl/rspamd.pm
new file mode 100644
index 000000000..99e0e4908
--- /dev/null
+++ b/perl/rspamd.pm
@@ -0,0 +1,30 @@
+package rspamd;
+
+use 5.006001;
+use strict;
+use warnings;
+
+require Exporter;
+
+our @ISA = qw(Exporter);
+
+our $VERSION = '0.0.1';
+
+require XSLoader;
+XSLoader::load('rspamd', $VERSION);
+1;
+__END__
+
+=head1 NAME
+
+rspamd - Perl interface to the rspamd API
+
+=head1 SYNOPSIS
+
+ use rpspamd;
+
+=head1 DESCRIPTION
+
+TODO: Not ready yet
+
+=cut