-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
36 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,17 @@ | ||
""" Import views/viewsets here for convenience """ | ||
from addon_service.authorized_storage_account.views import ( | ||
AuthorizedStorageAccountRelationshipView, | ||
AuthorizedStorageAccountViewSet, | ||
) | ||
from addon_service.configured_storage_addon.views import ( | ||
ConfiguredStorageAddonRelationshipView, | ||
ConfiguredStorageAddonViewSet, | ||
) | ||
from addon_service.external_storage_service.views import ( | ||
ExternalStorageServiceRelationshipView, | ||
ExternalStorageServiceViewSet, | ||
) | ||
from addon_service.internal_resource.views import ( | ||
InternalResourceRelationshipView, | ||
InternalResourceViewSet, | ||
) | ||
from addon_service.internal_user.views import ( | ||
InternalUserRelationshipView, | ||
InternalUserViewSet, | ||
) | ||
from addon_service.configured_storage_addon.views import ConfiguredStorageAddonViewSet | ||
from addon_service.external_storage_service.views import ExternalStorageServiceViewSet | ||
from addon_service.internal_resource.views import InternalResourceViewSet | ||
from addon_service.internal_user.views import InternalUserViewSet | ||
|
||
|
||
__all__ = ( | ||
"AuthorizedStorageAccountRelationshipView", | ||
"AuthorizedStorageAccountViewSet", | ||
"ConfiguredStorageAddonRelationshipView", | ||
"ConfiguredStorageAddonViewSet", | ||
"ExternalStorageServiceRelationshipView", | ||
"ExternalStorageServiceViewSet", | ||
"InternalResourceRelationshipView", | ||
"InternalResourceViewSet", | ||
"InternalUserRelationshipView", | ||
"InternalUserViewSet", | ||
) |