rayymaxx's picture
MOdifying with minimal app
156ac82
raw
history blame
157 Bytes
# app.py (temporary test)
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"status": "ok", "message": "minimal app works"}