export function httpHead(
  path: string,
  ...middleware: Array<Middleware>
): HandlerDecorator {
  return httpMethod('head', path, ...middleware);