class Rester::Client::Middleware::Base

Attributes

app[R]

Public Class Methods

new(app) click to toggle source
# File lib/rester/client/middleware/base.rb, line 6
def initialize(app)
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/rester/client/middleware/base.rb, line 10
def call(env)
  app.call(env)
end