Compare commits

...

1 Commits
v0.3.0 ... main

Author SHA1 Message Date
113fcbf2d1
adding author id to message struct 2025-06-25 19:12:34 -04:00
2 changed files with 2 additions and 0 deletions

View File

@ -193,6 +193,7 @@ func (b *bolt) handleCommand(msg *dg.MessageCreate, s *dg.Session, server *dg.Gu
//run command payload
res, err := run.Payload(Message{
Author: msg.Author.Username,
ID: msg.Author.ID,
Words: words,
Content: msg.Content,
Channel: channel.Name,

View File

@ -17,6 +17,7 @@ type Payload func(msg Message) (string, error)
// message information passed to payload function
type Message struct {
Author string //username of message author
ID string //discord ID of message author
Words []string //words from message split on whitespace
Content string //entire message content
Channel string //message channel