diff --git a/utils/embedColor.go b/utils/embedColor.go new file mode 100644 index 0000000..29ff357 --- /dev/null +++ b/utils/embedColor.go @@ -0,0 +1,9 @@ +package utils + +type EmbedColorType int + +const ( + EDefault EmbedColorType = 0xaddb87 + EFail EmbedColorType = 0xff0000 + ESuccess EmbedColorType = 0x00ff00 +)