| 29 | var errUnknownSecretType = errors.New("unknown secret type") |
| 30 | |
| 31 | type passPlugin struct { |
| 32 | kc store.Store |
| 33 | logger plugin.Logger |
| 34 | } |
| 35 | |
| 36 | func (m *passPlugin) GetSecrets(ctx context.Context, pattern plugin.Pattern) ([]plugin.Envelope, error) { |
| 37 | list, err := m.kc.Filter(ctx, pattern) |
nothing calls this directly
no outgoing calls
no test coverage detected