sysom1/sysom_server/sysom_rca/app/routers/health.py

22 lines
387 B
Python

# -*- coding: utf-8 -*- #
"""
Time 2023/04/17 19:32
Author: mingfeng (SunnyQjm)
Email mfeng@linux.alibaba.com
File health.py
Description:
"""
from fastapi import APIRouter
router = APIRouter()
@router.get("/check")
async def get_channel_config():
return {
"code": 0,
"err_msg": "",
"data": ""
}