Files
old-vendor-scheduler-service/app/services/vendors/vistar/vistar_tokens.rb

16 lines
252 B
Ruby
Raw Normal View History

2022-03-23 05:44:42 +01:00
# 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