16 lines
323 B
PHP
16 lines
323 B
PHP
|
<?php
|
||
|
/*
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
||
|
*/
|
||
|
|
||
|
namespace Modules\MMFCustomersGroups\Http\Controllers;
|
||
|
|
||
|
use Illuminate\Routing\Controller;
|
||
|
|
||
|
class CustomersGroupsController extends Controller {
|
||
|
public function list() {
|
||
|
// TODO
|
||
|
}
|
||
|
}
|