# Context is the environment which holds request/response specific # information such as params, content_type e.g class Kemal::Context getter request getter params getter content_type def initialize(@request, @params) @content_type = "text/html" end def set_content_type(content_type) @content_type = content_type end end