Documentation ¶ Index ¶ func New() migration.Store type Store func (s *Store) Get(ctx context.Context, account ed25519.PublicKey) (migration.State, error) func (s *Store) Reset() func (s *Store) Update(_ context.Context, account ed25519.PublicKey, prev, next migration.State) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func New ¶ func New() migration.Store New returns a memory backed migration.Store Types ¶ type Store ¶ added in v0.2.6 type Store struct { sync.Mutex // contains filtered or unexported fields } func (*Store) Get ¶ added in v0.2.6 func (s *Store) Get(ctx context.Context, account ed25519.PublicKey) (migration.State, error) Get implements migration.Store.Get. func (*Store) Reset ¶ added in v0.2.6 func (s *Store) Reset() func (*Store) Update ¶ added in v0.2.6 func (s *Store) Update(_ context.Context, account ed25519.PublicKey, prev, next migration.State) error Update implements migration.Store.Update. Source Files ¶ View all Source files memory.go Click to show internal directories. Click to hide internal directories.