mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
13 lines
181 B
Go
13 lines
181 B
Go
package syftjson
|
|
|
|
import "github.com/anchore/syft/syft/format"
|
|
|
|
func Format() format.Format {
|
|
return format.NewFormat(
|
|
format.JSONOption,
|
|
encoder,
|
|
decoder,
|
|
validator,
|
|
)
|
|
}
|