route.php 303 B

123456789
  1. <?php
  2. declare(strict_types=1);
  3. use think\facade\Route;
  4. Route::rule('test','test/index','GET|POST');
  5. Route::rule('withdraw','transaction/withdraw','GET|POST');
  6. Route::rule('getTxhashDetail','transaction/getTxhashDetail','GET|POST');
  7. Route::rule('createAddress','transaction/createAddress','GET|POST');