# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake desc "Get info on your team's private channels." command 'groups' do |g| g.desc 'This method returns the ID of a group.' g.long_desc %( This method returns the ID of a group. ) g.command 'id' do |c| c.flag 'channel', desc: 'Group channel to get ID for, prefixed with #.' c.action do |_global_options, options, _args| puts JSON.dump($client.groups_id(options)) end end end