mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 21:32:50 +00:00
13 lines
288 B
PHP
13 lines
288 B
PHP
<?php
|
|
|
|
namespace app\swagger\route;
|
|
|
|
use think\facade\Route;
|
|
|
|
|
|
Route::get('api', 'Index/getApiContent')->append(['api_name' => 'api']);
|
|
Route::get('adminapi', 'Index/getApiContent')->append(['api_name' => 'adminapi']);
|
|
Route::get('index', 'Index/index');
|
|
Route::get('/', 'Index/index');
|
|
|