File size: 336 Bytes
4f94787
 
11ba014
4f94787
 
 
ad2999f
4f94787
11ba014
4f94787
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from fastapi import FastAPI
from api.status import router as status_router
from api.chat import router as chat_router

app = FastAPI()

# Mount routers
app.include_router(status_router, prefix="/api")
app.include_router(chat_router, prefix="/api")

@app.get("/")
async def root():
    return {"message": "AI Life Coach API is running"}