| 186 | |
| 187 | |
| 188 | void cluster::guild_sync_integration(snowflake guild_id, snowflake integration_id, command_completion_event_t callback) { |
| 189 | rest_request<confirmation>(this, API_PATH "/guilds", std::to_string(guild_id), "integrations/" + std::to_string(integration_id), m_post, "", callback); |
| 190 | } |
| 191 | |
| 192 | |
| 193 | void cluster::guild_get_onboarding(snowflake guild_id, command_completion_event_t callback) { |
nothing calls this directly
no test coverage detected