2020-03-13 02:59:13 +09:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 17:26:18 +09:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2020-03-16 06:21:11 +09:00
|
|
|
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
|
|
|
|
2020-03-13 02:59:13 +09:00
|
|
|
return function (RoutingConfigurator $routes) {
|
2020-03-22 03:53:25 +09:00
|
|
|
$routes->import('.', 'GNUsocial');
|
2020-03-13 02:59:13 +09:00
|
|
|
};
|