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