feat: Add embed colors

This commit is contained in:
Siwoo Jeon 2025-03-26 20:10:08 +09:00
parent a3e51f0e4a
commit 222b8b4ea5
Signed by: migan
GPG key ID: 036E9A8C5E8E48DA

9
utils/embedColor.go Normal file
View file

@ -0,0 +1,9 @@
package utils
type EmbedColorType int
const (
EDefault EmbedColorType = 0xaddb87
EFail EmbedColorType = 0xff0000
ESuccess EmbedColorType = 0x00ff00
)