File size: 267 Bytes
ca24c14
2c7454d
ca24c14
 
 
 
 
 
 
 
 
efcc6b0
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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