class Roda::RodaPlugins::Middleware::Forwarder

def initialize(mid, app)

Store the current middleware and the next middleware to call.
def initialize(mid, app)
  @mid = mid.app
  @app = app
end