mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 22:05:07 +00:00
7 lines
173 B
Ruby
7 lines
173 B
Ruby
module AadhaarService
|
|
class << self
|
|
def instance
|
|
@instance ||= (Rails.env.production? ? AadhaarService::Production : AadhaarService::Mock).new
|
|
end
|
|
end
|
|
end
|