Add new changes to client profile and related files
This commit is contained in:
@@ -6,7 +6,7 @@ Router principal para la API v1
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api.v1.endpoints import auth, health, tenants, users, systems, categories, tickets
|
||||
from app.api.v1.endpoints import auth, health, tenants, users, systems, categories, tickets, client_profile
|
||||
|
||||
api_router = APIRouter()
|
||||
|
||||
@@ -54,6 +54,9 @@ api_router.include_router(
|
||||
tags=["tickets"]
|
||||
)
|
||||
|
||||
# Ensure FastAPI is installed in the environment
|
||||
# If not, install it using:
|
||||
# pip install fastapi
|
||||
# Client Profile routes
|
||||
api_router.include_router(
|
||||
client_profile.router,
|
||||
prefix="/client-profile",
|
||||
tags=["client-profile"]
|
||||
)
|
||||
Reference in New Issue
Block a user