mirror of
https://gh.wpcy.net/https://github.com/thomas-deep/freescoutAI.git
synced 2026-05-25 20:44:19 +08:00
20 lines
551 B
PHP
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';
|
|
}
|