class Medlink::Base

Private Class Methods

client() click to toggle source
# File lib/medlink/base.rb, line 20
def self.client
  @client ||= Client.new
end

Private Instance Methods

client() click to toggle source
# File lib/medlink/base.rb, line 16
def client
  @client ||= Client.new
end
params() click to toggle source
# File lib/medlink/base.rb, line 12
def params
  {}
end
path() click to toggle source
# File lib/medlink/base.rb, line 8
def path
  raise "path needs to be defined for this model"
end