Exemplo n.º 1
0
 public static string BotGateway()
 {
     return($"{DiscordAPI.Gateway()}/bot");
 }
Exemplo n.º 2
0
 public static string Message(string channel, string message)
 {
     return($"{DiscordAPI.ChannelMessages(channel)}/{message}");
 }
Exemplo n.º 3
0
 public static string MessageReactions(string channel, string message)
 {
     return($"{DiscordAPI.ChannelMessages(channel)}/{message}/reactions");
 }
Exemplo n.º 4
0
 public static string MessageReaction(string channel, string message, string emoji, string user = "******")
 {
     return($"{DiscordAPI.MessageReactions(channel, message)}/{emoji}/{user}");
 }
Exemplo n.º 5
0
 public static string ChannelMessages(string channel)
 {
     return($"{DiscordAPI.Channel(channel)}/messages");
 }