Biblioteka/lib/biblioteka.pm

11 lines
115 B
Raku

package biblioteka;
use Dancer ':syntax';
our $VERSION = '0.1';
get '/' => sub {
template 'index';
};
true;