module Roda::RodaPlugins::MultiPublic::RequestMethods

def multi_public(key)

this is a GET request.
Serve files from the directory corresponding to the given key if the file exists and
def multi_public(key)
  public_serve_with(roda_class.opts[:multi_public_servers].fetch(key))
end