summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/features.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/features.py')
-rw-r--r--gitlab/v4/objects/features.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gitlab/v4/objects/features.py b/gitlab/v4/objects/features.py
index da756e0..449b2e7 100644
--- a/gitlab/v4/objects/features.py
+++ b/gitlab/v4/objects/features.py
@@ -1,8 +1,15 @@
+from gitlab import utils
from gitlab import exceptions as exc
from gitlab.base import * # noqa
from gitlab.mixins import * # noqa
+__all__ = [
+ "Feature",
+ "FeatureManager",
+]
+
+
class Feature(ObjectDeleteMixin, RESTObject):
_id_attr = "name"