aboutsummaryrefslogtreecommitdiffstats
path: root/src/middleware.ts
blob: bdc006a9544771742653bfa812509ce55d72e92b (plain)
1
2
3
4
5
import { NextFunction, Request, Response } from "@tinyhttp/app";

export const auth = async (_req: Request, _res: Response, next: NextFunction): Promise<void> => {
  await next();
};