This commit is contained in:
2025-04-07 16:16:27 -04:00
parent e34ea79572
commit fc3588b1d0
3 changed files with 191 additions and 36 deletions
+9
View File
@@ -0,0 +1,9 @@
package helpers
import (
"fmt"
)
func CreateMessageLink(guildID, channelID, messageID string) string {
return fmt.Sprintf("https://discord.com/channels/%s/%s/%s", guildID, channelID, messageID)
}