summary refs log tree commit diff
path: root/src/util/schemas/responses/GuildRecommendationsResponse.ts
blob: 211670a60d05ef6ea511df094b7a25633259e215 (plain) (blame)
1
2
3
4
5
6
import { Guild } from "../../entities";

export interface GuildRecommendationsResponse {
	recommended_guilds: Guild[];
	load_id: string;
}