freescoutAI/start.php
2025-04-14 23:13:33 +02:00

20 lines
551 B
PHP

<?php
/*
|--------------------------------------------------------------------------
| Register Namespaces and Routes
|--------------------------------------------------------------------------
|
| When a module starting, this file will executed automatically. This helps
| to register some namespaces like translator or view. Also this file
| will load the routes file for each module. You may also modify
| this file as you want.
|
*/
/**
* Register module routes.
*/
if (!app()->routesAreCached()) {
require __DIR__ . '/Http/routes.php';
}