summary refs log tree commit diff
path: root/src/util/schemas/StreamCreateSchema.ts
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-10-14 09:30:52 +0200
committerRory& <root@rory.gay>2025-10-14 09:34:21 +0200
commit0da7169b005e37f77b9220579c8e0e0639cc6983 (patch)
treecd9c0f683f2da3edc311b07f284ad10d29a61be8 /src/util/schemas/StreamCreateSchema.ts
parentAdmin api changes (diff)
downloadserver-ts-0da7169b005e37f77b9220579c8e0e0639cc6983.tar.xz
Move schemas to separate module
Diffstat (limited to 'src/util/schemas/StreamCreateSchema.ts')
-rw-r--r--src/util/schemas/StreamCreateSchema.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/util/schemas/StreamCreateSchema.ts b/src/util/schemas/StreamCreateSchema.ts
deleted file mode 100644

index bb650791..00000000 --- a/src/util/schemas/StreamCreateSchema.ts +++ /dev/null
@@ -1,13 +0,0 @@ -export interface StreamCreateSchema { - type: "guild" | "call"; - channel_id: string; - guild_id?: string; - preferred_region?: string; -} - -export const StreamCreateSchema = { - type: String, - channel_id: String, - $guild_id: String, - $preferred_region: String, -};