23 lines
244 B
Python
23 lines
244 B
Python
"""Version 1 API routers."""
|
|
from . import (
|
|
activities,
|
|
analytics,
|
|
auth,
|
|
contacts,
|
|
deals,
|
|
organizations,
|
|
tasks,
|
|
users,
|
|
)
|
|
|
|
__all__ = [
|
|
"activities",
|
|
"analytics",
|
|
"auth",
|
|
"contacts",
|
|
"deals",
|
|
"organizations",
|
|
"tasks",
|
|
"users",
|
|
]
|