6 lines
79 B
Ruby
6 lines
79 B
Ruby
|
class EnvironmentTester
|
||
|
def self.call
|
||
|
ENV.fetch('API_KEY', '')
|
||
|
end
|
||
|
end
|