| 24 | var _ store.Secret = &PassValue{} |
| 25 | |
| 26 | type PassValue struct { |
| 27 | value []byte |
| 28 | metadata map[string]string // not exported; populated via SetMetadata |
| 29 | } |
| 30 | |
| 31 | func NewPassValue(value []byte) *PassValue { |
| 32 | return &PassValue{value: value} |
nothing calls this directly
no outgoing calls
no test coverage detected