goMuffin/utils/embedColor.go

9 lines
158 B
Go

package utils
type EmbedColorType int
const (
EDefault EmbedColorType = 0xaddb87
EFail EmbedColorType = 0xff0000
ESuccess EmbedColorType = 0x00ff00
)