Refactor app structure and simplify team docs
This commit is contained in:
13
backend/app/routes/__init__.py
Normal file
13
backend/app/routes/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from .auth import register_auth_routes
|
||||
from .integration import register_integration_routes
|
||||
from .organization import register_member_routes
|
||||
from .seatmap import register_seatmap_routes
|
||||
from .system import register_system_routes
|
||||
|
||||
__all__ = [
|
||||
"register_auth_routes",
|
||||
"register_integration_routes",
|
||||
"register_member_routes",
|
||||
"register_seatmap_routes",
|
||||
"register_system_routes",
|
||||
]
|
||||
3
backend/app/routes/auth.py
Normal file
3
backend/app/routes/auth.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from ..auth_routes import register_auth_routes
|
||||
|
||||
__all__ = ["register_auth_routes"]
|
||||
3
backend/app/routes/integration.py
Normal file
3
backend/app/routes/integration.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from ..integration_routes import register_integration_routes
|
||||
|
||||
__all__ = ["register_integration_routes"]
|
||||
3
backend/app/routes/organization.py
Normal file
3
backend/app/routes/organization.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from ..member_routes import register_member_routes
|
||||
|
||||
__all__ = ["register_member_routes"]
|
||||
3
backend/app/routes/seatmap.py
Normal file
3
backend/app/routes/seatmap.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from ..seatmap_routes import register_seatmap_routes
|
||||
|
||||
__all__ = ["register_seatmap_routes"]
|
||||
3
backend/app/routes/system.py
Normal file
3
backend/app/routes/system.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from ..system_routes import register_system_routes
|
||||
|
||||
__all__ = ["register_system_routes"]
|
||||
Reference in New Issue
Block a user