| 62 | } |
| 63 | |
| 64 | type Writer interface { |
| 65 | SaveCredentials(ctx context.Context, org string, credentials any, opts ...SaveOption) (string, error) |
| 66 | DeleteCredentials(ctx context.Context, credID string) error |
| 67 | } |
| 68 | |
| 69 | type Reader interface { |
| 70 | ReadCredentials(ctx context.Context, secretName string, credentials any) error |
no outgoing calls
no test coverage detected