game2005api/webapp/controller/ServerSwitchController.class.php
aozhiwei b7a3c78ccb 1
2021-11-25 19:34:24 +08:00

17 lines
304 B
PHP

<?php
class ServerSwitchController extends BaseAuthedController {
public function getSwitch()
{
$payable = 0;
echo json_encode(array(
'errcode' => 0,
'errmsg' => '',
'payable' => $payable,
'show_team_ui' => 1
));
}
}