module Roda::RodaPlugins::Base::ResponseMethods

def []=(key, value)

response['Content-Type'] = 'application/json'

Set the response header with the given key to the given value.
def []=(key, value)
  @headers[key] = value
end