File: AppFile.pm

package info (click to toggle)
libdancer2-perl 0.207000%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,460 kB
  • sloc: perl: 8,069; makefile: 7
file content (10 lines) | stat: -rw-r--r-- 151 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
package [d2% appname %2d];
use Dancer2;

our $VERSION = '0.1';

get '/' => sub {
    template 'index' => { 'title' => '[d2% appname %2d]' };
};

true;