Add required routes.php file

This commit is contained in:
Antoine Le Gonidec 2024-07-16 12:09:44 +02:00
parent 867bec7a25
commit b2383e5432
Signed by: vv221
GPG key ID: 636B78F91CEB80D8

20
Http/routes.php Normal file
View file

@ -0,0 +1,20 @@
<?php
/*
SPDX-License-Identifier: AGPL-3.0-only
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
*/
use Helper;
use Illuminate\Support\Facades\Route;
Route::group(
[
'middleware' => 'web',
'prefix' => Helper::getSubdirectory(),
'namespace' => 'Modules\MMFCustomersGroups\Http\Controllers'
],
function() {
// TODO
}
);