Implement basic router and a controller for simfile API. Need to make some changes...
[rock.divinelegy.git] / config / Routes.php
1 <?php
2
3 return [
4 '/simfiles' => [
5 'methods' => ['GET'],
6 'controller' => 'Simfile',
7 'action' => 'list'
8 ]
9 ];