mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-16 01:55:11 -05:00
9 lines
117 B
Python
9 lines
117 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/")
|
|
async def root():
|
|
return {"message": "Hello World"}
|