aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/tag.rb
blob: e5e719d34fa18577284107cd34a0244aa551aed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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