2023-08-25 14:43:41 +08:00

7 lines
216 B
PHP

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