game2006api/webapp/controller/OpsController.class.php
aozhiwei 4c44c04310 1
2024-06-09 10:30:05 +08:00

32 lines
425 B
PHP

<?php
class OpsController {
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,
));
}
}