Add client, request and response classes

This commit is contained in:
Dan Milne
2019-09-03 12:57:43 +10:00
commit f816ad4fb1
17 changed files with 514 additions and 0 deletions

8
lib/aws_paa/client.rb Normal file
View File

@@ -0,0 +1,8 @@
require 'rest-client'
module AwsPaa
class Client
def initialize(:access_key, :secret_key, :marketplace, partner_tag: nil, partner_type: 'Associates')
end
end
end