module Roda::RodaPlugins::StaticRouting::ClassMethods

def static_route_for(method, path)

Return the static route for the given request method and path.
def static_route_for(method, path)
  if h = opts[:static_routes][path]
    h[method] || h[nil]
  end
end