diff options
Diffstat (limited to 'gitlab/v4/objects/container_registry.py')
-rw-r--r-- | gitlab/v4/objects/container_registry.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gitlab/v4/objects/container_registry.py b/gitlab/v4/objects/container_registry.py index a6d0983..80d8922 100644 --- a/gitlab/v4/objects/container_registry.py +++ b/gitlab/v4/objects/container_registry.py @@ -4,6 +4,14 @@ from gitlab.base import * # noqa from gitlab.mixins import * # noqa +__all__ = [ + "ProjectRegistryRepository", + "ProjectRegistryRepositoryManager", + "ProjectRegistryTag", + "ProjectRegistryTagManager", +] + + class ProjectRegistryRepository(ObjectDeleteMixin, RESTObject): _managers = (("tags", "ProjectRegistryTagManager"),) |