Guest User

Untitled

a guest
Apr 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. module Rack
  2. class Identity
  3.  
  4. def initialize(app)
  5. @app = app
  6. end
  7.  
  8. def call(env)
  9. @app.call(env)
  10. end
  11.  
  12. end
  13. end
Add Comment
Please, Sign In to add comment