major refactoring adding vendor and customer features

This commit is contained in:
2025-10-11 09:09:25 +02:00
parent f569995883
commit dd16198276
126 changed files with 15109 additions and 3747 deletions

View File

@@ -0,0 +1,8 @@
# app/api/v1/__init__.py
"""
API Version 1 - All endpoints
"""
from . import admin, vendor, public
__all__ = ["admin", "vendor", "public"]