Files
old-vendor-scheduler-service/app/services/vendors/vistar/vistar_tokens.rb
2022-03-23 05:44:42 +01:00

16 lines
252 B
Ruby

# frozen_string_literal: true
require_relative '../../log/loggable'
module Vendors
module Vistar
class VistarTokens
include Singleton
def api_key
AppConfig.get_mandatory 'vendors.vistar.api_key'
end
end
end
end