# frozen_string_literal: true require 'hobgoblin/client' module Hobgoblin class CLI::Download def initialize(remote_source, path, options) @remote_source = remote_source @path = path @options = options end def run client = Hobgoblin::Client.new(@options) client.download(@remote_source, @path) end end end