16 lines
292 B
Python
16 lines
292 B
Python
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"])
|
|
|
|
|