diff options
Diffstat (limited to 'hearth/var/www/cgi/dlr-routo.cgi')
-rwxr-xr-x | hearth/var/www/cgi/dlr-routo.cgi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hearth/var/www/cgi/dlr-routo.cgi b/hearth/var/www/cgi/dlr-routo.cgi new file mode 100755 index 0000000..1675fd2 --- /dev/null +++ b/hearth/var/www/cgi/dlr-routo.cgi @@ -0,0 +1,13 @@ +#!/usr/bin/perl +#use FindBin '$Bin'; +#use lib "$Bin/../../public_webdata/hearth/HelloSMS/lib"; +use lib "/home/hearth/public_webdata/hearth/HelloSMS/lib"; +use HelloSMS::DLR; + +my $webapp = HelloSMS::DLR->new( + PARAMS => { + cfg_file => '/home/hearth/public_webdata/hearth/HelloSMS/etc/hellosms.cfg', + id => 'routo', + }, +); +$webapp->run(); |