stubStore implements coreauth.Store plus watcher-specific persistence helpers.
| 1508 | |
| 1509 | // stubStore implements coreauth.Store plus watcher-specific persistence helpers. |
| 1510 | type stubStore struct { |
| 1511 | authDir string |
| 1512 | cfgPersisted int32 |
| 1513 | authPersisted int32 |
| 1514 | lastAuthMessage string |
| 1515 | lastAuthPaths []string |
| 1516 | } |
| 1517 | |
| 1518 | func (s *stubStore) List(context.Context) ([]*coreauth.Auth, error) { return nil, nil } |
| 1519 | func (s *stubStore) Save(context.Context, *coreauth.Auth) (string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected