Files
self-bot/Bot/Helpers/helpers.go
T
2025-04-07 16:16:27 -04:00

10 lines
200 B
Go

package helpers
import (
"fmt"
)
func CreateMessageLink(guildID, channelID, messageID string) string {
return fmt.Sprintf("https://discord.com/channels/%s/%s/%s", guildID, channelID, messageID)
}