· 6 years ago · Feb 18, 2019, 09:06 AM
1def ApiClient 2 def initialize(oauth_token) 3 @oauth_token = oauth_token 4 end 5 6 def posts 7 Resources::Posts.new(@oauth_token) 8 end 9end