mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-14 09:36:35 +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
|
||
|
|
}
|