Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IdentityStore ¶
type IdentityStore interface {
// Delete deletes the identity with the provided fingerprint from this store.
Delete(fingerprint string) error
// Fetch returns the identity with the provided fingerprint from this store.
Fetch(fingerprint string) (*identities.Identity, error)
// List returns the identities from this store.
List() ([]*identities.Identity, error)
// Upsert inserts or updates an identity into this store and returns the fingerprint.
Upsert(*identities.Identity) (string, error)
}
IdentityStore defines the interface for identity stores.
Click to show internal directories.
Click to hide internal directories.