from fastapi import FastAPI
from core.config import settings
from api.v1.router import api_router

app = FastAPI(title="Poorav AI Developer Platform", version="0.1.0")
app.include_router(api_router, prefix="/api/v1")

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