TaskSystem/app/api/route/index.php
2023-08-25 15:00:00 +08:00

6 lines
143 B
PHP

<?php
use think\facade\Route;
Route::group('v1', function () {
Route::post('/notify_property','/Index/notifyProperty');
})->prefix('api');