You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
362 B
18 lines
362 B
|
6 months ago
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers;
|
||
|
|
|
||
|
|
class SwaggerController extends Controller
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 返回JSON格式的Swagger定义
|
||
|
|
*/
|
||
|
|
public function getJSON()
|
||
|
|
{
|
||
|
|
if(config('app.debug')){
|
||
|
|
$swagger = \OpenApi\Generator::scan([app_path('Http/Controllers/')]);
|
||
|
|
return response()->json($swagger, 200);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|