summaryrefslogtreecommitdiff
path: root/lib/StarGit.pm
blob: 161e4a78d421a7a9967de9080efe662d9a4f1181 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package StarGit;
use Dancer ':syntax';

our $VERSION = '0.1';

get '/' => sub {
    template 'index';
};

true;