# frozen_string_literal: true require 'hobgoblin/client' module Hobgoblin class CLI::Upload def initialize(source, remote_path, options) @source = source @remote_path = remote_path @options = options end def run client = Hobgoblin::Client.new(@options) client.upload(@source, @remote_path) end end end