2023-08-25 14:43:41 +08:00
|
|
|
<?php
|
|
|
|
use think\facade\Route;
|
|
|
|
|
|
|
|
Route::group('v1', function () {
|
2023-08-25 14:56:58 +08:00
|
|
|
Route::post('/notify_authentication','/Index/notifyAuthentication');
|
2023-08-25 14:43:41 +08:00
|
|
|
Route::post('/notify_property','/Index/notifyProperty');
|
2023-08-25 14:56:58 +08:00
|
|
|
})->prefix('api');
|