ga2-50e79a / main.py
ShoaibSSM's picture
Create main.py
4bd4193 verified
raw
history blame contribute delete
263 Bytes
from fastapi import FastAPI
app = FastAPI(title="GA2 Observability API")
@app.get("/")
def root():
return {"message": "Deployment-ready-ga2-50e79a", "status": "active"}
@app.get("/health")
def health_check():
return {"status": "healthy", "port": 7211}