mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 17:03:17 +01:00
* internalize majority of cmd package and migrate integration tests Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * add internal api encoder Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * create internal representation of all formats Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * export capability to get default encoders Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * restore test fixtures Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
26 lines
407 B
Go
26 lines
407 B
Go
package options
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/anchore/clio"
|
|
"github.com/anchore/syft/internal/redact"
|
|
)
|
|
|
|
type secret string
|
|
|
|
var _ interface {
|
|
fmt.Stringer
|
|
clio.PostLoader
|
|
} = (*secret)(nil)
|
|
|
|
// PostLoad needs to use a pointer receiver, even if it's not modifying the value
|
|
func (r *secret) PostLoad() error {
|
|
redact.Add(string(*r))
|
|
return nil
|
|
}
|
|
|
|
func (r secret) String() string {
|
|
return string(r)
|
|
}
|