| 36 | |
| 37 | |
| 38 | void cluster::guild_template_delete(snowflake guild_id, const std::string &code, command_completion_event_t callback) { |
| 39 | rest_request<confirmation>(this, API_PATH "/guilds", std::to_string(guild_id), "templates/" + code, m_delete, "", callback); |
| 40 | } |
| 41 | |
| 42 | |
| 43 | void cluster::guild_template_modify(snowflake guild_id, const std::string &code, const std::string &name, const std::string &description, command_completion_event_t callback) { |
nothing calls this directly
no test coverage detected