module Roda::RodaPlugins::Base::ResponseMethods

def initialize

Set the default headers when creating a response.
def initialize
  @status  = nil
  @headers = {}
  @body    = []
  @length  = 0
end