status-go/protocol/common/feature_flags.go
2020-07-27 17:20:16 +02:00

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
}