# frozen_string_literal: true require "zeitwerk" loader = Zeitwerk::Loader.for_gem loader.setup # ready! module WhatsappSdk class << self def configuration @configuration ||= Configuration.new end def configure yield(configuration) end end end