module Roda::RodaPlugins::NamedRoutes::ClassMethods

def freeze

Freeze the namespaced routes so that there can be no thread safety issues at runtime.
def freeze
  opts[:namespaced_routes].freeze.each_value(&:freeze)
  super
end