mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
12 lines
343 B
Go
12 lines
343 B
Go
package common
|
|
|
|
type FeatureFlags struct {
|
|
// Datasync indicates whether direct messages should be sent exclusively
|
|
// using datasync, breaking change for non-v1 clients. Public messages
|
|
// are not impacted
|
|
Datasync bool
|
|
|
|
// PushNotification indicates whether we should be enabling the push notification feature
|
|
PushNotifications bool
|
|
}
|