Method: Esplanade::Middleware#call

Defined in:
lib/esplanade/middleware.rb

#call(env) ⇒ Object



12
13
14
15
# File 'lib/esplanade/middleware.rb', line 12

def call(env)
  status, headers, body = @app.call(env)
  [status, headers, body]
end