diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-13 17:51:16 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-13 17:51:16 +0200 |
commit | 0ddca07df000252d778b4830e3dcd2f2a11f5539 (patch) | |
tree | e42b282e95bc45fb2f1bbc10ab0c98f2f63fd2c5 /api/src/routes/guilds/index.ts | |
parent | :bug: fix In() query (diff) | |
download | server-0ddca07df000252d778b4830e3dcd2f2a11f5539.tar.xz |
:art: remove unused imports
Diffstat (limited to 'api/src/routes/guilds/index.ts')
-rw-r--r-- | api/src/routes/guilds/index.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/api/src/routes/guilds/index.ts b/api/src/routes/guilds/index.ts index ba951f96..082f8539 100644 --- a/api/src/routes/guilds/index.ts +++ b/api/src/routes/guilds/index.ts @@ -1,7 +1,6 @@ import { Router, Request, Response } from "express"; import { Role, Guild, Snowflake, Config, User, Member, Channel } from "@fosscord/util"; -import { HTTPError } from "lambert-server"; -import { check, route } from "@fosscord/api"; +import { route } from "@fosscord/api"; import { DiscordApiErrors } from "@fosscord/util"; import { ChannelModifySchema } from "../channels/#channel_id"; |