List returns all auth records stored in the backend.
(ctx context.Context)
| 6 | type Store interface { |
| 7 | // List returns all auth records stored in the backend. |
| 8 | List(ctx context.Context) ([]*Auth, error) |
| 9 | // Save persists the provided auth record, replacing any existing one with same ID. |
| 10 | Save(ctx context.Context, auth *Auth) (string, error) |
| 11 | // Delete removes the auth record identified by id. |
no outgoing calls