summary refs log tree commit diff
path: root/src/util/schemas/responses/GuildRecommendationsResponse.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/responses/GuildRecommendationsResponse.ts')
-rw-r--r--src/util/schemas/responses/GuildRecommendationsResponse.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/schemas/responses/GuildRecommendationsResponse.ts b/src/util/schemas/responses/GuildRecommendationsResponse.ts
new file mode 100644
index 00000000..211670a6
--- /dev/null
+++ b/src/util/schemas/responses/GuildRecommendationsResponse.ts
@@ -0,0 +1,6 @@
+import { Guild } from "../../entities";
+
+export interface GuildRecommendationsResponse {
+	recommended_guilds: Guild[];
+	load_id: string;
+}