| 102 | |
| 103 | |
| 104 | void cluster::guild_create(const class guild &g, command_completion_event_t callback) { |
| 105 | rest_request<guild>(this, API_PATH "/guilds", "", "", m_post, g.build_json(), callback); |
| 106 | } |
| 107 | |
| 108 | |
| 109 | void cluster::guild_delete(snowflake guild_id, command_completion_event_t callback) { |
nothing calls this directly
no test coverage detected