mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-26 20:42:11 +00: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"}
|