2016-07-10 01:18:13 +01:00
|
|
|
#ifndef BOT_APIHELPER
|
|
|
|
#define BOT_APIHELPER
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "json/json.hpp"
|
|
|
|
|
|
|
|
using json = nlohmann::json;
|
|
|
|
|
|
|
|
class HTTPHelper;
|
|
|
|
|
2016-08-10 17:07:41 +01:00
|
|
|
namespace DiscordAPI {
|
|
|
|
json get_gateway();
|
2016-07-10 01:18:13 +01:00
|
|
|
void send_message(std::string channel_id, std::string message);
|
2016-08-10 17:07:41 +01:00
|
|
|
}
|
2016-07-10 01:18:13 +01:00
|
|
|
|
|
|
|
#endif
|