aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/tag.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/leap_cli/config/tag.rb')
-rw-r--r--lib/leap_cli/config/tag.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/leap_cli/config/tag.rb b/lib/leap_cli/config/tag.rb
new file mode 100644
index 0000000..e5e719d
--- /dev/null
+++ b/lib/leap_cli/config/tag.rb
@@ -0,0 +1,18 @@
+#
+#
+# A class for node services or node tags.
+#
+#
+
+module LeapCli; module Config
+
+ class Tag < Object
+ attr_reader :node_list
+
+ def initialize(manager=nil)
+ super(manager)
+ @node_list = Config::ObjectList.new
+ end
+ end
+
+end; end