summary refs log tree commit diff
path: root/src/routes/guilds/index.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-03-30 15:37:54 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-03-30 15:37:54 +0200
commit247ef99a2135bedc184e209d7f2011c83be83cfb (patch)
tree995d2cc748cccc88731ddedc02e1a8a64cea742e /src/routes/guilds/index.ts
parentmove routes to top level no more /api/v8 -> use reverse proxy instead (diff)
downloadserver-247ef99a2135bedc184e209d7f2011c83be83cfb.tar.xz
:bug: rewrite imports
Diffstat (limited to '')
-rw-r--r--src/routes/guilds/index.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/routes/guilds/index.ts b/src/routes/guilds/index.ts

index 319184ad..d7dce64b 100644 --- a/src/routes/guilds/index.ts +++ b/src/routes/guilds/index.ts
@@ -1,11 +1,11 @@ import { Router, Request, Response } from "express"; import { RoleModel, GuildModel, Snowflake, Guild } from "fosscord-server-util"; import { HTTPError } from "lambert-server"; -import { check } from "./../../../../util/instanceOf"; -import { GuildCreateSchema } from "../../../../schema/Guild"; -import Config from "../../../../util/Config"; -import { getPublicUser } from "../../../../util/User"; -import { addMember } from "../../../../util/Member"; +import { check } from "./../../util/instanceOf"; +import { GuildCreateSchema } from "../../schema/Guild"; +import Config from "../../util/Config"; +import { getPublicUser } from "../../util/User"; +import { addMember } from "../../util/Member"; const router: Router = Router();