kemal/src/kemal/init_handler.cr

14 lines
375 B
Crystal
Raw Normal View History

module Kemal
# Kemal::InitHandler is the first handler thus initializes the context with default values such as
# Content-Type, X-Powered-By.
class InitHandler < HTTP::Handler
INSTANCE = new
def call(context)
context.response.headers.add "X-Powered-By", "Kemal"
call_next context
context.response.content_type = "text/html"
end
end
end