feat: initial olympus project structure

This commit is contained in:
Schubert Ferenc 2026-07-01 20:08:43 +02:00
commit e42be90e01
6 changed files with 678 additions and 0 deletions

View file

@ -0,0 +1,17 @@
from fastapi import FastAPI
app = FastAPI(
title="Hermes API",
version="0.1.0",
description="Backend von Olympus"
)
@app.get("/")
def root():
return {"service": "Hermes", "status": "running"}
@app.get("/health")
def health():
return {"status": "healthy"}