You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
701 B
20 lines
701 B
# API Views Package
|
|
# This package contains all API-related views organized by functionality
|
|
|
|
from .api_views import HomeView, CountryView, CommentListAPIView, CityListView
|
|
from .documentation import CustomAPIDocumentationView
|
|
from .swagger_views import CustomSwaggerView, SwaggerTokenAuthView, clear_swagger_auth
|
|
from .admin_dashboard import AdminDashboardStatsView
|
|
from .professor_dashboard import ProfessorDashboardStatsView
|
|
__all__ = [
|
|
'HomeView',
|
|
'CountryView',
|
|
'CommentListAPIView',
|
|
'CityListView',
|
|
'CustomAPIDocumentationView',
|
|
'CustomSwaggerView',
|
|
'SwaggerTokenAuthView',
|
|
'clear_swagger_auth',
|
|
'AdminDashboardStatsView',
|
|
'ProfessorDashboardStatsView'
|
|
]
|