deleted debug info

This commit is contained in:
fluttershy 2025-01-25 12:57:43 +05:00
parent fc402ce9c1
commit ea60dff81e

View File

@ -10,7 +10,6 @@ private:
public:
Message(const nlohmann::json& data = "") : data(data), web(WebSocket::getInstance()), req(NetworkManager::getInstance()) {};
std::string send(const std::string& id, const nlohmann::json& msg) {
std::cout << id << msg << std::endl;
return req.request(HttpMethods::POST, DiscordEndpoints::details::latest + "/channels/" + id + "/messages", msg.dump());
}
std::string getMessages(const std::string& id, const std::string& count, const std::string& before = "") {