game2004api/webapp/phpcommon/Controller/OpsController.class.php
aozhiwei ea36ad4705 1
2020-03-06 13:00:52 +08:00

16 lines
241 B
PHP

<?php
class OpsController {
public function selfChecking()
{
echo json_encode(array(
'errcode' => 0,
'errmsg' => '',
'healthy' => 1,
'max_rundelay' => 1,
));
}
}