| 123456789101112131415161718192021 | 
							- <?php
 
- use Illuminate\Http\Request;
 
- /*
 
- |--------------------------------------------------------------------------
 
- | API Routes
 
- |--------------------------------------------------------------------------
 
- |
 
- | Here is where you can register API routes for your application. These
 
- | routes are loaded by the RouteServiceProvider within a group which
 
- | is assigned the "api" middleware group. Enjoy building your API!
 
- |
 
- */
 
- Route::any('wxSetUser', 'Api\WxController@setUser');
 
- Route::any('wxSetMobile', 'Api\WxController@setMobile');
 
- Route::any('wxLogin', 'Api\WxController@login');
 
- Route::any('wxH5', 'Api\WxController@wxH5');
 
- Route::group(['middleware'=> ['checkWx']],function ($route){
 
- });
 
 
  |