from dotenv import load_dotenv
load_dotenv()

from fastapi import FastAPI
from routers import parse, ats, skill_gap, job_match, roast, hackathon

app = FastAPI(title="CareerForge AI Engine")

app.include_router(parse.router)
app.include_router(ats.router)
app.include_router(skill_gap.router)
app.include_router(job_match.router)
app.include_router(roast.router)
app.include_router(hackathon.router)

@app.get("/health")
def health():
    return {"status": "ok"}