9b9682f626
* create FeatureFlags in configurations * update for unit tests * update unit tests, go.mod * update go.sum * fix lint errors Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
8 lines
316 B
Go
8 lines
316 B
Go
package model
|
|
|
|
type ClientConfig struct {
|
|
Telemetry bool `json:"telemetry"`
|
|
TelemetryID string `json:"telemetryid"`
|
|
EnablePublicSharedBoards bool `json:"enablePublicSharedBoards"`
|
|
FeatureFlags map[string]string `json:"featureFlags"`
|
|
}
|