summary refs log tree commit diff
path: root/util/src/schemas/GuildCreateSchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'util/src/schemas/GuildCreateSchema.ts')
-rw-r--r--util/src/schemas/GuildCreateSchema.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/util/src/schemas/GuildCreateSchema.ts b/util/src/schemas/GuildCreateSchema.ts
deleted file mode 100644

index e4855119..00000000 --- a/util/src/schemas/GuildCreateSchema.ts +++ /dev/null
@@ -1,14 +0,0 @@ -import { ChannelModifySchema } from "."; - -export interface GuildCreateSchema { - /** - * @maxLength 100 - */ - name: string; - region?: string; - icon?: string | null; - channels?: ChannelModifySchema[]; - guild_template_code?: string; - system_channel_id?: string; - rules_channel_id?: string; -}