summary refs log tree commit diff
path: root/lib/chat.pm
blob: f0db431936f4ccbec72d5b8d6a5c92c19d2feb7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package chat;
use Dancer ':syntax';
use 5.010;

our $VERSION = '0.1';

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

get qr{/chat/(.*)} => sub {
    my $room = splat;
    my $env  = request->env;
    template 'room', { room => $room, host => 'foo', env => $env };
};

true;