summary refs log tree commit diff
path: root/src/database/entities/Channel.ts
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-06-16 02:47:03 +0200
committerRory& <root@rory.gay>2026-06-16 02:47:03 +0200
commit6e0f571b353769e70580b0d78344495f65c8dc25 (patch)
tree2864eeb39802a8079ce482ddff7e1d44aa2851c1 /src/database/entities/Channel.ts
parentMove random string to Random class in extensions (diff)
downloadserver-ts-6e0f571b353769e70580b0d78344495f65c8dc25.tar.xz
Signify some imports more explicitly
Diffstat (limited to 'src/database/entities/Channel.ts')
-rw-r--r--src/database/entities/Channel.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/entities/Channel.ts b/src/database/entities/Channel.ts

index 1543d20b..85ffcd8a 100644 --- a/src/database/entities/Channel.ts +++ b/src/database/entities/Channel.ts
@@ -20,7 +20,7 @@ import { HTTPError } from "lambert-server/HTTPError"; import { Column, Entity, JoinColumn, ManyToOne, OneToMany, RelationId } from "typeorm"; import { DmChannelDTO } from "../../util/dtos"; import { ChannelCreateEvent, ChannelRecipientRemoveEvent, ThreadCreateEvent, ThreadMembersUpdateEvent } from "../../util/interfaces"; -import { InvisibleCharacters, Snowflake, emitEvent, getPermission, Permissions, Config, DiscordApiErrors } from "../../util/util"; +import { InvisibleCharacters, Snowflake, emitEvent, getPermission, Permissions, Config, DiscordApiErrors } from "@spacebar/util/util"; import { BaseClass } from "./BaseClass"; import { Guild } from "./Guild"; import { Invite } from "./Invite";