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