21 lines
324 B
PHP
Executable File
21 lines
324 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Laravel\Lumen\Routing\Controller as BaseController;
|
|
|
|
/**
|
|
* @OA\Info(
|
|
* title="Your Awesome Modules's API",
|
|
* version="1.0.0",
|
|
* @OA\Contact(
|
|
* email="developers@module.com",
|
|
* name="Developer Team"
|
|
* )
|
|
* )
|
|
*/
|
|
class Controller extends BaseController
|
|
{
|
|
//
|
|
}
|