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