mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 08:53:15 +01:00
13 lines
187 B
Go
13 lines
187 B
Go
package spdx22json
|
|
|
|
import "github.com/anchore/syft/syft/format"
|
|
|
|
func Format() format.Format {
|
|
return format.NewFormat(
|
|
format.SPDXJSONOption,
|
|
encoder,
|
|
decoder,
|
|
validator,
|
|
)
|
|
}
|