module Dry::Configurable

def create_config

Other tags:
    Private: -
def create_config
  @_config_mutex.synchronize do
    create_config_for_nested_configurations
    @_config = ::Dry::Configurable::Config.create(_settings) unless _settings.empty?
  end
end