# File lib/hammer_cli_import/repositoryenable.rb, line 128
      def read_channel_mapping_data(filename)
        channel_map = {}

        File.open(filename, 'r') do |f|
          json = f.read
          channel_map = JSON.parse(json)
        end
        return channel_map
      end