any-sync/pkg/acl/account/accountdata.go
2022-07-13 22:36:56 +02:00

11 lines
340 B
Go

package account
import "github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
type AccountData struct { // TODO: create a convenient constructor for this
Identity string // TODO: this is essentially the same as sign key
SignKey keys.SigningPrivKey
EncKey keys.EncryptionPrivKey
Decoder keys.SigningPubKeyDecoder
}