freescout-Following-Module/start.php
Avenjamin b9a7b46024 Initial Following Module code
Beginnings of the code for the Following module
2023-02-23 21:27:09 +11:00

17 lines
516 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';
}