mirror of
https://gitee.com/ShopeX/ECShopX
synced 2026-08-05 03:35:50 +08:00
24 lines
683 B
PHP
24 lines
683 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| openapi 接口
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register all of the routes for an application.
|
|
| It is a breeze. Simply tell Lumen the URIs it should respond to
|
|
| and give it the Closure to call when that URI is requested.
|
|
|
|
|
*/
|
|
|
|
$api->version('v1', function($api) {
|
|
|
|
$api->group(['namespace' => 'AdaPayBundle\Http\FrontApi\V1\Action','prefix'=>'systemlink'], function($api) {
|
|
|
|
$api->post('adapay/agent/callback', ['as' => 'adapay.agent.callback', 'uses'=>'CallBack@handle']);
|
|
|
|
});
|
|
|
|
});
|
|
|