chinwagsocial/app/services/fetch_feed_service.rb

16 lines
221 B
Ruby
Raw Normal View History

2016-02-21 08:53:20 +11:00
class FetchFeedService
def call(account)
2016-02-23 02:00:20 +11:00
process_service.(http_client.get(account.remote_url), account)
end
private
def process_service
ProcessFeedService.new
end
def http_client
HTTP
2016-02-21 08:53:20 +11:00
end
end