game2006api/webapp/controller/CallbackController.class.php
2023-07-30 14:13:23 +08:00

22 lines
407 B
PHP

<?php
/*
services/callback/common/SignatureService.php
需要对web3service回调的做签名校验!!!
*/
require_once('services/CallBack.php');
use services\CallBackService;
class CallbackController extends BaseController {
public function dispatch()
{
$cbService = new CallBackService();
$action = getReqVal('action', '');
$cbService->dispatch($action);
}
}