10 lines
204 B
Go
10 lines
204 B
Go
package account
|
|
|
|
import "github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
|
|
|
type AccountData struct {
|
|
Identity string
|
|
SignKey keys.SigningPrivKey
|
|
EncKey keys.EncryptionPrivKey
|
|
}
|