]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - lib/NCIP/Dancing.pm
Tidying up dancer app
[working/NCIPServer.git] / lib / NCIP / Dancing.pm
1 package NCIP::Dancing;
2 use Dancer ':syntax';
3
4 our $VERSION = '0.1';
5
6 use NCIP;
7
8
9 any ['get', 'post'] => '/' => sub {
10     my $ncip = NCIP->new('t/config_sample');
11     my $xml = param 'xml';
12     my $content = $ncip->process_request($xml);
13     template 'main', { content => $content };
14 };
15
16 true;