feat: initial olympus project structure
This commit is contained in:
commit
e42be90e01
6 changed files with 678 additions and 0 deletions
17
backend/hermes/app/main.py
Normal file
17
backend/hermes/app/main.py
Normal 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"}
|
||||
Loading…
Add table
Add a link
Reference in a new issue