aboutsummaryrefslogtreecommitdiff
path: root/commands/credits.go
blob: cdcfe6e8ac23457af67a7ab70b8d2755718dffce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package commands

import (
	"github.com/anhgelus/gokord/cmd"
	"github.com/anhgelus/gokord/logger"
	"github.com/bwmarrin/discordgo"
)

func Credits(_ *discordgo.Session, i *discordgo.InteractionCreate, _ cmd.OptionMap, resp *cmd.ResponseBuilder) {
	err := resp.AddEmbed(&discordgo.MessageEmbed{

		Type:        discordgo.EmbedTypeRich,
		Title:       "Crédits",
		Description: "Auteur du bot : @anhgelus (https://github.com/anhgelus)\nLangage : Go 1.24\nLicence : AGPLv3",
		Color:       0x10E6AD,
		Fields: []*discordgo.MessageEmbedField{
			{
				Name:   "anhgelus/gokord",
				Value:  "v0.10.0 - MPL 2.0",
				Inline: true,
			},
			{
				Name:   "bwmarrin/discordgo",
				Value:  "v0.29.0 - BSD-3-Clause",
				Inline: true,
			},
			{
				Name:   "gorm",
				Value:  "v1.30.0 - MIT",
				Inline: true,
			},
		},
	}).Send()
	if err != nil {
		logger.Alert("commands/credits.go - Sending credits", err.Error(), "guild_id", i.GuildID)
	}
}