ajuste de cruds incompleto

This commit is contained in:
2026-04-06 16:06:31 -07:00
parent 61d386a7c7
commit 290a32364d
75 changed files with 3574 additions and 26 deletions

View File

@@ -7,6 +7,9 @@ from app.core.servo import get_servo
from database import test_connection
from app.modules.users.route import router as user_router
from app.modules.clients.route import router as client_router
from app.modules.branches.route import router as branches_router
logging.basicConfig(level=logging.INFO,
format= "%(asctime)s - %(levelname)s - %(message)s",
@@ -56,3 +59,5 @@ async def root():
app.include_router(user_router)
app.include_router(client_router)
app.include_router(branches_router)