32 lines
448 B
PHP
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,
|
|
));
|
|
}
|
|
|
|
}
|