12 lines
299 B
Go
12 lines
299 B
Go
|
package metadata
|
||
|
|
||
|
import "git.lumeweb.com/LumeWeb/libs5-go/encoding"
|
||
|
|
||
|
type UserIdentityMetadata struct {
|
||
|
UserID *encoding.CID
|
||
|
Details UserIdentityMetadataDetails
|
||
|
SigningKeys []UserIdentityPublicKey
|
||
|
EncryptionKeys []UserIdentityPublicKey
|
||
|
Links map[int]*encoding.CID
|
||
|
}
|