Moved all api endpoints to /api/* and added root controller

This commit is contained in:
Tom Bloor 2017-04-06 22:19:36 +01:00
parent 8bda8dba73
commit dbc2c59461
3 changed files with 24 additions and 13 deletions

View file

@ -0,0 +1,9 @@
package Pear::LocalLoop::Controller::Root;
use Mojo::Base 'Mojolicious::Controller';
sub index {
my $c = shift;
}
1;