| 123456789 |
- <?php
- declare(strict_types=1);
- use think\facade\Route;
- Route::rule('test','test/index','GET|POST');
- Route::rule('withdraw','transaction/withdraw','GET|POST');
- Route::rule('getTxhashDetail','transaction/getTxhashDetail','GET|POST');
- Route::rule('createAddress','transaction/createAddress','GET|POST');
|