mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-19 06:17:32 +00:00
10 lines
160 B
Go
10 lines
160 B
Go
|
package chat
|
||
|
|
||
|
type ChatConfig struct {
|
||
|
// Defaults to true if DebugMode is set to true
|
||
|
Enabled *bool
|
||
|
Url string
|
||
|
SplitCount int
|
||
|
Compact bool
|
||
|
}
|