# frozen_string_literal: true module DvelpApiAuth class Configuration attr_accessor :api_auth_secret_key def initialize(api_auth_secret_key: ENV['DVELP_API_AUTH_SECRET_KEY']) self.api_auth_secret_key = api_auth_secret_key end end end