learning-center/config/routes.php
2024-09-08 13:48:26 +03:00

14 lines
439 B
PHP

<?php
declare(strict_types=1);
return array_merge(
include __DIR__ . '/../app/Access/routes.php',
include __DIR__ . '/../app/Forum/Topic/routes.php',
include __DIR__ . '/../app/Forum/Category/routes.php',
include __DIR__ . '/../app/Forum/Comment/routes.php',
include __DIR__ . '/../app/Auth/routes.php',
include __DIR__ . '/../app/User/routes.php',
include __DIR__ . '/../app/SharedKernel/File/routes.php'
);