module BrickFTP::RESTfulAPI::Command

Public Class Methods

included(klass) click to toggle source
# File lib/brick_ftp/restful_api/command.rb, line 6
def self.included(klass)
  klass.class_eval do
    attr_reader :client
  end
end
new(client) click to toggle source

Initialize command.

@param [BrickFTP::RESTfulAPI::Client] client RESTful API client.

# File lib/brick_ftp/restful_api/command.rb, line 16
def initialize(client)
  @client = client
end