From b4cc8fd64b0dbadd7d6f4249e4eef5417bbc0bc6 Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Sun, 14 May 2023 22:45:42 +0200 Subject: [PATCH] add type guildcreateresponse --- src/api/types.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/api/types.rs b/src/api/types.rs index c87786b..bfb6861 100644 --- a/src/api/types.rs +++ b/src/api/types.rs @@ -1477,3 +1477,8 @@ pub struct Webhook { pub source_guild: Option, pub id: String, } + +#[derive(Serialize, Deserialize, Debug, Default, Clone)] +pub struct GuildCreateResponse { + pub id: String, +}