| 52 | |
| 53 | |
| 54 | void cluster::guild_template_sync(snowflake guild_id, const std::string &code, command_completion_event_t callback) { |
| 55 | rest_request<dtemplate>(this, API_PATH "/guilds", std::to_string(guild_id), "templates/" + code, m_put, "", callback); |
| 56 | } |
| 57 | |
| 58 | |
| 59 | void cluster::template_get(const std::string &code, command_completion_event_t callback) { |
nothing calls this directly
no test coverage detected