LiteyukiBot-TriM/liteyuki/plugins/liteyuki_webdash/main.py

11 lines
170 B
Python
Raw Normal View History

from fastapi import FastAPI
from nonebot import get_app
from .restful_api import *
2024-05-14 02:37:32 +00:00
@app.get("/ping")
async def root():
2024-05-14 02:37:32 +00:00
return {
"message": "pong"
}