11 lines
363 B
Python
11 lines
363 B
Python
from api.endpoints.auth import api_router as auth_router
|
|
from api.endpoints.profile import api_router as profile_router
|
|
from api.endpoints.account import api_router as account_router
|
|
from api.endpoints.keyring import api_router as keyring_router
|
|
|
|
list_of_routes = [auth_router, profile_router, account_router, keyring_router]
|
|
|
|
__all__ = [
|
|
"list_of_routes",
|
|
]
|