game2004api/webapp/controller/OpsController.class.php
aozhiwei 59cae52fe8 1
2020-08-26 11:10:20 +08:00

18 lines
292 B
PHP

<?php
class OpsController {
private $gameid = 1009;
public function selfChecking()
{
echo json_encode(array(
'errcode' => 0,
'errmsg' => "gameid:{$this->gameid}",
'healthy' => 1,
'max_rundelay' => 1,
));
}
}