1234567891011121314151617181920212223 |
- <?php
- use think\facade\Route;
- Route::group('bind', function () {
-
- Route::rule('system_bind','v1.bind/system_bind');
-
- Route::rule('system_bind_data','v1.bind/system_bind_data');
-
- Route::rule('bindsuccess','v1.bind/bindsuccess');
- })->middleware([
- ]);
|