0
0
Fork 0
zero/lib/zero/request.rb

12 lines
166 B
Ruby

module Zero
# encapsulate the rack environment
class Request
attr_reader :env
# create a new
def initialize(env)
@env = env
end
end
end