first commit
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run

This commit is contained in:
MTimka
2026-05-13 11:31:18 -07:00
parent e16668665c
commit 0f9b7a24e6
7 changed files with 147 additions and 0 deletions

13
app.py Normal file
View File

@@ -0,0 +1,13 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello, World!"}
@app.get("/health")
async def health():
return {"status": "healthy"}