from fastapi import FastAPI
from dotenv import load_dotenv
from api import routers
import os
load_dotenv()
app = FastAPI()
for router in routers:
app.include_router(router)
@app.get("/health")
def health():
return {"status": "ok"}