]> git.ktnx.net Git - lsl.git/blob - lib/App/LazyShoppingList/Web.pm
first take at a Dancer2 app, some functions work
[lsl.git] / lib / App / LazyShoppingList / Web.pm
1 use v5.26;
2 use warnings;
3 use utf8;
4
5 package App::LazyShoppingList::Web;
6 use Dancer2;
7
8 our $VERSION = '0.1';
9
10 use JSON();
11
12 use experimental 'signatures';
13
14 set charset => 'UTF-8';
15
16 # main web-application
17 get '/' => sub {
18     template 'index' => { 'title' => 'App::REST::LazyShoppingList' };
19 };
20
21 true;