1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/app/models/upgrader/provided.rb

11 lines
223 B
Ruby
Raw Normal View History

module Upgrader::Provided
extend ActiveSupport::Concern
class_methods do
private
def fetch_latest_upgrade_candidates_from_provider
Providers.github.fetch_latest_upgrade_candidates
end
end
end