Files
ECShopX/routes/systemlink/adapay.php
2025-12-29 22:14:41 +08:00

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']);
});
});