F1_API / main.py
tracinginsights's picture
Create main.py
9ae94f1
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}