mirror of
https://github.com/outbackdingo/pangolin.git
synced 2026-01-27 18:20:04 +00:00
7 lines
212 B
TypeScript
7 lines
212 B
TypeScript
import HttpCode from "@server/types/HttpCode";
|
|
import createHttpError from "http-errors";
|
|
|
|
export function unauthorized(msg?: string) {
|
|
return createHttpError(HttpCode.UNAUTHORIZED, msg || "Unauthorized");
|
|
}
|