10 lines
197 B
PHP
10 lines
197 B
PHP
<?php
|
|
|
|
declare(strict_types = 1);
|
|
|
|
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
|
|
|
return function (RoutingConfigurator $routes) {
|
|
$routes->import('.', 'GNUsocial');
|
|
};
|