game2001api/webapp/controller/ServerSwitchController.class.php
aozhiwei 8e6f3ab49c 1
2019-08-22 10:35:35 +08:00

15 lines
213 B
PHP

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