Initial commit: Robot ökoszisztéma v2.0 - Stabilizált jármű és szerviz robotok
This commit is contained in:
14
code-server-config/data/User/History/10134b39/JVpZ.py
Executable file
14
code-server-config/data/User/History/10134b39/JVpZ.py
Executable file
@@ -0,0 +1,14 @@
|
||||
from fastapi import APIRouter
|
||||
from app.api.v1 import social, users, fleet, auth
|
||||
|
||||
api_router = APIRouter()
|
||||
|
||||
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
||||
|
||||
# Social (Providers, Voting, Competitions)
|
||||
api_router.include_router(social.router, prefix="/social", tags=["Social & Providers"])
|
||||
|
||||
# Users (Profile, Me)
|
||||
api_router.include_router(users.router, prefix="/users", tags=["Users"])
|
||||
|
||||
api_router.include_router(fleet.router, prefix="/fleet", tags=["Fleet & Logistics"])
|
||||
Reference in New Issue
Block a user