add missing files

This commit is contained in:
2026-06-25 01:03:10 +02:00
parent 502e190aba
commit 19eacf72ed
3 changed files with 40 additions and 0 deletions

11
app/main.py Normal file
View File

@@ -0,0 +1,11 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"message": "Pozdrav svijete!", "autor": "GalicIvan"}
@app.get("/health")
def health():
return {"status": "ok"}