22 lines
660 B
Python
22 lines
660 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
|
|
from api.endpoints.list_events import api_router as listevents_router
|
|
from api.endpoints.process_schema import api_router as processschema_router
|
|
from api.endpoints.ps_node import api_router as ps_node_router
|
|
|
|
list_of_routes = [
|
|
auth_router,
|
|
profile_router,
|
|
account_router,
|
|
keyring_router,
|
|
listevents_router,
|
|
processschema_router,
|
|
ps_node_router,
|
|
]
|
|
|
|
__all__ = [
|
|
"list_of_routes",
|
|
]
|