aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/tag.rb
blob: 25c7246b5dfa1464a7a70ab22a545f1b11d2a55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module LeapCli
  module Config
    class Tag < Base

      def nodes
        @nodes ||= Config::List.new
      end

      def services
        @manager.services
      end

      def tags
        @manager.tags
      end

    end
  end
end