mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-29 01:18:59 +03:00
16 lines
255 B
PHP
16 lines
255 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => 'home',
|
|
'path' => '/',
|
|
'middleware' => function ($req, $resp) {
|
|
|
|
},
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
],
|
|
|
|
];
|