mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
17 lines
255 B
PHP
17 lines
255 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => 'home',
|
|
'path' => '/',
|
|
'middleware' => function ($req, $resp) {
|
|
|
|
},
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
],
|
|
|
|
];
|