14 lines
256 B
Python
14 lines
256 B
Python
from app.routers import auth, todos, events, reminders, projects, people, locations, settings, dashboard
|
|
|
|
__all__ = [
|
|
"auth",
|
|
"todos",
|
|
"events",
|
|
"reminders",
|
|
"projects",
|
|
"people",
|
|
"locations",
|
|
"settings",
|
|
"dashboard",
|
|
]
|