class Syntropy::App

def respond_not_found(req)

def respond_not_found(req)
  headers = { ':status' => Qeweney::Status::NOT_FOUND }
  case req.method
  when 'head'
    req.respond(nil, headers)
  else
    req.respond('Not found', headers)
  end
end