| 107 | |
| 108 | |
| 109 | void cluster::guild_delete(snowflake guild_id, command_completion_event_t callback) { |
| 110 | rest_request<confirmation>(this, API_PATH "/guilds", std::to_string(guild_id), "", m_delete, "", callback); |
| 111 | } |
| 112 | |
| 113 | |
| 114 | void cluster::guild_delete_integration(snowflake guild_id, snowflake integration_id, command_completion_event_t callback) { |
nothing calls this directly
no test coverage detected