Versions in this module Expand all Collapse all v0 v0.1.0 Jun 25, 2026 Changes in this version + type Credential struct + CreatedAt time.Time + ID string + Name string + SignCount uint32 + UserID string + type Service struct + func FromKernel(k *togo.Kernel) (*Service, bool) + func (s *Service) CredentialsFor(userID string) []*Credential + func (s *Service) WithStore(store Store) *Service + type Store interface + Add func(c *Credential) + ByUser func(userID string) []*Credential + Delete func(id string) bool + Get func(id string) (*Credential, bool) + UpdateSignCount func(id string, count uint32)