| 170 | } |
| 171 | |
| 172 | type StringChatComponent struct { |
| 173 | Text string `json:"text"` |
| 174 | *ChatComponent |
| 175 | } |
| 176 | |
| 177 | func (component *StringChatComponent) SetText(text string) { |
| 178 | component.Text = text |
nothing calls this directly
no outgoing calls
no test coverage detected