mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 20:08:02 +00:00
10 lines
135 B
Go
10 lines
135 B
Go
|
package chat
|
||
|
|
||
|
type ChatMessage struct {
|
||
|
Text string `json:"text"`
|
||
|
}
|
||
|
|
||
|
func (msg *ChatMessage) GetContent() string {
|
||
|
return msg.Text
|
||
|
}
|