game2003api/webapp/controller/OpsController.class.php
aozhiwei c3764aa783 1
2020-01-20 16:36:05 +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,
));
}
}