diff options
Diffstat (limited to 'gitlab/v4/objects/services.py')
-rw-r--r-- | gitlab/v4/objects/services.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gitlab/v4/objects/services.py b/gitlab/v4/objects/services.py index 7667d2a..ff7e920 100644 --- a/gitlab/v4/objects/services.py +++ b/gitlab/v4/objects/services.py @@ -1,8 +1,15 @@ +from gitlab import cli from gitlab import exceptions as exc from gitlab.base import * # noqa from gitlab.mixins import * # noqa +__all__ = [ + "ProjectService", + "ProjectServiceManager", +] + + class ProjectService(SaveMixin, ObjectDeleteMixin, RESTObject): pass |