7 lines
216 B
PHP
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'); |