implemented contact command and added check if the thread already exists

added anon reply command
This commit is contained in:
Sheldan
2020-05-06 15:36:13 +02:00
parent a06006d763
commit 54327c3e58
12 changed files with 147 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
package dev.sheldan.abstracto.core.utils;
public class ChannelUtils {
private ChannelUtils() {
}
public static String buildChannelUrl(Long serverId, Long channelId) {
return String.format("https://discordapp.com/channels/%s/%s/", serverId, channelId);
}
}