PairProAI / app /main.py
shubhendu-ghosh's picture
Update app/main.py
ca843c7 verified
raw
history blame contribute delete
291 Bytes
from fastapi import FastAPI, HTTPException, Depends
from .routes import router
app = FastAPI(title="PairProAI", description="AI-powered pair programming API")
# Include Routes
app.include_router(router)
@app.get("/")
def health_check():
return {"message": "PairProAI API is running"}