kemal/src/frank/context.cr

15 lines
166 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
end