| 7 | ) |
| 8 | |
| 9 | type commandContext struct { |
| 10 | channelID string |
| 11 | targetID string |
| 12 | guildID string |
| 13 | content string |
| 14 | mentionRoles []string |
| 15 | author *discordgo.User |
| 16 | member *discordgo.Member |
| 17 | interaction *discordgo.Interaction |
| 18 | responded bool |
| 19 | deferred bool |
| 20 | } |
| 21 | |
| 22 | func newInteractionCommandContext( |
| 23 | interaction *discordgo.InteractionCreate, |
nothing calls this directly
no outgoing calls
no test coverage detected