File size: 157 Bytes
156ac82
516d1c9
 
 
156ac82
 
 
1
2
3
4
5
6
7
8
# app.py (temporary test)
from fastapi import FastAPI
app = FastAPI()

@app.get("/")
def root():
    return {"status": "ok", "message": "minimal app works"}