game2002api/webapp/controller/OpsController.class.php
wangwei01 0bd95356b7 1
2019-07-08 15:01:32 +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,
));
}
}