Moved all api endpoints to /api/* and added root controller
This commit is contained in:
parent
8bda8dba73
commit
dbc2c59461
3 changed files with 24 additions and 13 deletions
9
lib/Pear/LocalLoop/Controller/Root.pm
Normal file
9
lib/Pear/LocalLoop/Controller/Root.pm
Normal file
|
@ -0,0 +1,9 @@
|
|||
package Pear::LocalLoop::Controller::Root;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
sub index {
|
||||
my $c = shift;
|
||||
|
||||
}
|
||||
|
||||
1;
|
Reference in a new issue