module Roda::RodaPlugins::Base::ClassMethods

def call(env)

access to the underlying rack app.
However, for performance, it's better to use #app to get direct
This allows the class itself to be used as a rack application.
Call the internal rack application with the given environment.
def call(env)
  app.call(env)
end