class TimeDoctor::Core::Base

Public Class Methods

new(worker) click to toggle source
# File lib/timedoctor/core/base.rb, line 6
def initialize(worker)
  @worker = worker
end

Private Instance Methods

exchange(method, url, params = {}) click to toggle source
# File lib/timedoctor/core/base.rb, line 12
def exchange(method, url, params = {})
  @worker.exchange(method, url, params)
end