mirror of
https://git.yylx.win/https://github.com/sogjugz/freescout-remote-response.git
synced 2025-10-03 18:21:33 +08:00
19 lines
565 B
PHP
19 lines
565 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.
|
|
|
|
|
*/
|
|
|
|
if (!app()->routesAreCached()) {
|
|
require __DIR__ . '/Http/routes.php';
|
|
}
|
|
|
|
require_once(__DIR__ . '/vendor/autoload.php');
|