diff options
Diffstat (limited to 'index.pl')
-rw-r--r-- | index.pl | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -212,6 +212,12 @@ get '/all' => sub { return; }; +get '/bar' => sub { + my $self = shift; + $self->render('bargraph'); + return; +}; + app->config( hypnotoad => { accepts => 10, |