mirror of https://github.com/dnomd343/tgbot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
380 B
24 lines
380 B
3 years ago
|
<?php
|
||
|
|
||
|
$cmds = array( // 命令列表
|
||
|
'test'
|
||
|
);
|
||
|
|
||
|
function route($cmd, $rawParam) { // 命令请求路由
|
||
|
switch ($cmd) {
|
||
|
case 'test':
|
||
|
test($rawParam);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function routeCallback($cmd, $rawParam) { // 回调请求路由
|
||
|
switch ($cmd) {
|
||
|
case 'test':
|
||
|
testCallback($rawParam);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|