servala-portal/src/servala/frontend/views/__init__.py

12 lines
281 B
Python
Raw Normal View History

2025-03-17 09:12:58 +01:00
from .auth import LogoutView
2025-03-17 03:30:44 +01:00
from .generic import IndexView, ProfileView
from .organization import OrganizationCreateView, OrganizationDashboardView
2025-03-17 03:30:44 +01:00
__all__ = [
"IndexView",
2025-03-17 09:12:58 +01:00
"LogoutView",
2025-03-18 06:58:40 +01:00
"OrganizationCreateView",
"OrganizationDashboardView",
2025-03-17 03:30:44 +01:00
"ProfileView",
]