roast / main.py
Thibault Goehringer
Trying stuff out
ad45b04
raw
history blame
94 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}