genregenerator/bin/app.pl

10 lines
158 B
Perl
Raw Normal View History

2011-06-27 14:25:19 +02:00
#!/usr/bin/env perl
use Dancer;
2011-06-28 22:10:59 +02:00
use autodie qw(chdir);
use Cwd qw(abs_path);
2011-06-28 21:55:40 +02:00
2011-06-28 22:10:59 +02:00
chdir abs_path(dirname(__FILE__) . '/..');
2011-06-28 22:05:23 +02:00
require App::Genregenerator;
2011-06-27 14:25:19 +02:00
dance;