public static string BotGateway() { return($"{DiscordAPI.Gateway()}/bot"); }
public static string Message(string channel, string message) { return($"{DiscordAPI.ChannelMessages(channel)}/{message}"); }
public static string MessageReactions(string channel, string message) { return($"{DiscordAPI.ChannelMessages(channel)}/{message}/reactions"); }
public static string MessageReaction(string channel, string message, string emoji, string user = "******") { return($"{DiscordAPI.MessageReactions(channel, message)}/{emoji}/{user}"); }
public static string ChannelMessages(string channel) { return($"{DiscordAPI.Channel(channel)}/messages"); }