mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 08:47:23 +08:00
8 lines
154 B
Python
8 lines
154 B
Python
from fastapi import FastAPI
|
|
from nonebot import get_app
|
|
from .restful_api import *
|
|
|
|
@app.get("/")
|
|
async def root():
|
|
return {"message": "Hello World"}
|