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.
22 lines
411 B
22 lines
411 B
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class SwaggerController extends Controller
|
|
{
|
|
/**
|
|
* @OA\Info(title="护工管理平台接口", version="0.1")
|
|
*/
|
|
|
|
/**
|
|
* 返回JSON格式的Swagger定义
|
|
*/
|
|
public function getJSON()
|
|
{
|
|
$swagger = \OpenApi\scan(app_path('Http/Controllers/'));
|
|
return response()->json($swagger, 200);
|
|
}
|
|
}
|