cap_backend / main.py
logeswari's picture
commit the changes
2c7454d
raw
history blame contribute delete
267 Bytes
from fastapi import FastAPI
from routes import analytics
app = FastAPI()
# This sets up logging with the directory fix
app.include_router(analytics.router)
@app.get("/")
def home():
return {"message": "HR Analytics API is running"}
def home():
return