game2006api/webapp/controller/ServerSwitchController.class.php
aozhiwei 4c6e1fa3d4 1
2022-06-07 18:50:17 +08:00

14 lines
227 B
PHP

<?php
class ServerSwitchController extends BaseAuthedController {
public function getSwitch()
{
$openList = array();
myself()->_rspData(array(
'open_list' => $openList
));
}
}