aboutsummaryrefslogtreecommitdiff
path: root/commands/credits.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus@anhgelus.world>2025-06-04 15:11:16 +0200
committerAnhgelus Morhtuuzh <anhgelus@anhgelus.world>2025-06-04 15:11:16 +0200
commit48eb4410ad14d74b3f1925d263b8fe32c472a648 (patch)
tree4b1092e502e06db17fbfd77e2c5c01b0b55123b5 /commands/credits.go
parentb92911fb6ccd11910f394eef02090071d8d45114 (diff)
build(gokord): upgrade to 0.10.0
Diffstat (limited to 'commands/credits.go')
-rw-r--r--commands/credits.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/commands/credits.go b/commands/credits.go
index 1914950..0943761 100644
--- a/commands/credits.go
+++ b/commands/credits.go
@@ -5,8 +5,7 @@ import (
"github.com/bwmarrin/discordgo"
)
-func Credits(s *discordgo.Session, i *discordgo.InteractionCreate) {
- resp := utils.NewResponseBuilder(s, i)
+func Credits(s *discordgo.Session, i *discordgo.InteractionCreate, optMap utils.OptionMap, resp *utils.ResponseBuilder) {
err := resp.AddEmbed(&discordgo.MessageEmbed{
Type: discordgo.EmbedTypeRich,
@@ -16,7 +15,7 @@ func Credits(s *discordgo.Session, i *discordgo.InteractionCreate) {
Fields: []*discordgo.MessageEmbedField{
{
Name: "anhgelus/gokord",
- Value: "v0.9.0 - MPL 2.0",
+ Value: "v0.10.0 - MPL 2.0",
Inline: true,
},
{
@@ -25,8 +24,8 @@ func Credits(s *discordgo.Session, i *discordgo.InteractionCreate) {
Inline: true,
},
{
- Name: "redis/go-redis/v9",
- Value: "v9.8.0 - BSD-2-Clause",
+ Name: "gorm",
+ Value: "v1.30.0 - MIT",
Inline: true,
},
},