mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 15:47:17 +01:00
11 lines
190 B
PHP
11 lines
190 B
PHP
<?php
|
|
return ['resources' =>
|
|
[
|
|
'note' => ['url' => '/notes'],
|
|
'noteApi' => ['url' => '/api/v1/notes']
|
|
],
|
|
'routes' => [
|
|
['name' => 'page#index', 'url' => '/', 'verb' => 'GET']
|
|
]
|
|
];
|