jdeip/app/main.py

16 lines
292 B
Python
Raw Normal View History

from fastapi import FastAPI
from .config import settings
from .routers.proxy import router as proxy_router
app = FastAPI(title="EIP Rotation Service")
@app.get("/health")
def health_check():
return {"status": "ok"}
app.include_router(proxy_router, prefix="/proxy", tags=["proxy"])