The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
234 B

  1. # frozen_string_literal: true
  2. module ProofProvider
  3. SUPPORTED_PROVIDERS = %w(keybase).freeze
  4. def self.find(identifier, proof = nil)
  5. case identifier
  6. when 'keybase'
  7. ProofProvider::Keybase.new(proof)
  8. end
  9. end
  10. end