Files
portabase/backend/routes/main.py
T

9 lines
250 B
Python
Raw Normal View History

2024-10-19 15:55:51 +02:00
from fastapi import APIRouter
2024-10-27 15:56:43 +01:00
from routes.http import welcome, user, agent
2024-10-19 15:55:51 +02:00
2024-10-27 11:51:53 +01:00
api_router = APIRouter(prefix="/api", tags=["api"])
api_router.include_router(welcome.router)
api_router.include_router(user.router)
2024-10-27 15:56:43 +01:00
api_router.include_router(agent.router)
2024-10-19 15:55:51 +02:00