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