better naming standards

This commit is contained in:
2025-06-04 23:15:00 -04:00
parent cc77adeadc
commit 5b32d09a27
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ type Payload func(msg Message) (res string, err error)
type Message struct {
Author string //username of message author
Words []string //words from message split on whitespace
Message string //entire message content
Content string //entire message content
Channel string //channel message was sent in
Server string //guild message was sent in
}