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