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.
16 lines
489 B
16 lines
489 B
# API Views Package
|
|
# This package contains all API-related views organized by functionality
|
|
|
|
from .api_views import HomeView, CountryView, CommentListAPIView
|
|
from .documentation import CustomAPIDocumentationView
|
|
from .swagger_views import CustomSwaggerView, SwaggerTokenAuthView, clear_swagger_auth
|
|
|
|
__all__ = [
|
|
'HomeView',
|
|
'CountryView',
|
|
'CommentListAPIView',
|
|
'CustomAPIDocumentationView',
|
|
'CustomSwaggerView',
|
|
'SwaggerTokenAuthView',
|
|
'clear_swagger_auth',
|
|
]
|