fix: Add inlineCode

This commit is contained in:
Siwoo Jeon 2025-03-30 00:17:09 +09:00
parent 10d40e85d3
commit 695b22c3d5
Signed by: migan
GPG key ID: 036E9A8C5E8E48DA
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ func (c *Command) informationRun(s *discordgo.Session, m any) {
Fields: []*discordgo.MessageEmbedField{
{
Name: "운영 체제",
Value: runtime.GOOS + " " + runtime.GOARCH,
Value: utils.InlineCode(runtime.GOOS + " " + runtime.GOARCH),
},
{
Name: "제작자",

View file

@ -7,7 +7,7 @@ import (
"git.wh64.net/muffin/goMuffin/utils"
)
const MUFFIN_VERSION = "0.0.0-gopher_canary.250329b"
const MUFFIN_VERSION = "0.0.0-gopher_canary.250329c"
var updatedString string = utils.Decimals.FindAllStringSubmatch(MUFFIN_VERSION, -1)[3][0]