docking-station / main.py
apapp
yo
3ffd33a
raw
history blame contribute delete
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "this is shit"}