summary refs log tree commit diff
path: root/api/src/middlewares/BodyParser.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/middlewares/BodyParser.ts')
-rw-r--r--api/src/middlewares/BodyParser.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/middlewares/BodyParser.ts b/api/src/middlewares/BodyParser.ts

index 4cb376bc..35db3c6f 100644 --- a/api/src/middlewares/BodyParser.ts +++ b/api/src/middlewares/BodyParser.ts
@@ -1,6 +1,6 @@ import bodyParser, { OptionsJson } from "body-parser"; import { NextFunction, Request, Response } from "express"; -import { HTTPError } from "lambert-server"; +import { HTTPError } from "@fosscord/util"; export function BodyParser(opts?: OptionsJson) { const jsonParser = bodyParser.json(opts);