refactor(lib,commands,errors): error capitalization and nouns do not follow Go's review standards

This commit is contained in:
Guz
2024-11-22 18:50:33 -03:00
parent 84dad980a9
commit 4d7eb73f75
2 changed files with 17 additions and 17 deletions

View File

@@ -31,8 +31,8 @@ type ChatCommandContext struct {
}
var (
ErrChatCommandOptionNotExists = errors.New("Chat command option does not exist")
ErrChatCommandOptionInvalidType = errors.New("Chat command option is not of the type requested")
ErrChatCommandOptionNotExists = errors.New("chat command option does not exist")
ErrChatCommandOptionInvalidType = errors.New("chat command option is not of the type requested")
)
type ChatCommandContextOptions map[string]ChatCommandOption