team3 / app /main.py
BjarneBepaData
Forgot the uvicorn
3057300
raw
history blame
No virus
133 Bytes
from typing import Union
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}