module Roda::RodaPlugins::Base::ResponseMethods

def set_default_headers

response, set the header in the response.
For each default header, if a header has not already been set for the
def set_default_headers
  h = @headers
  default_headers.each do |k,v|
    h[k] ||= v
  end
end