10 lines
200 B
Go
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)
|
|
}
|