kemal/src/frank/context.cr

19 lines
205 B
Crystal
Raw Normal View History

class Frank::Context
getter request
def initialize(@request)
end
def response
@response ||= Response.new
end
def response?
@response
end
2015-05-29 21:21:15 +00:00
def params
request.params
end
end