WokerTask/app/api/route/index.php

6 lines
143 B
PHP
Raw Normal View History

2023-12-27 14:06:33 +08:00
<?php
use think\facade\Route;
Route::group('v1', function () {
Route::post('/notify_property','/Index/notifyProperty');
})->prefix('api');