11 lines
456 B
Python
Executable File
11 lines
456 B
Python
Executable File
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import auth # Fontos a helyes import!
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Minden auth funkciót ide gyűjtünk (Register, Login, Recover)
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
|
|
# Itt jönnek majd a további modulok:
|
|
# api_router.include_router(users.router, prefix="/users", tags=["Users"])
|
|
# api_router.include_router(fleet.router, prefix="/fleet", tags=["Fleet"]) |