ruv's picture
first commit
215f78b unverified
raw
history blame contribute delete
278 Bytes
from fastapi import FastAPI
from backend.app.routes import agent, settings
app = FastAPI()
app.include_router(agent.router)
app.include_router(settings.router)
@app.get("/")
async def root():
return {"message": "Welcome to the Agentic Employment Infrastructure Backend"}