Biblioteka/lib/biblioteka.pm

11 lines
115 B
Perl
Raw Normal View History

2013-03-19 18:52:26 +00:00
package biblioteka;
use Dancer ':syntax';
our $VERSION = '0.1';
get '/' => sub {
template 'index';
};
true;