game2006api/webapp/controller/OpsController.class.php
aozhiwei 817015072f 1
2024-07-25 10:42:20 +08:00

32 lines
448 B
PHP

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