2022-03-04 17:22:40 -05:00

17 lines
189 B
Go

package text
import (
"github.com/anchore/syft/syft/sbom"
)
const ID sbom.FormatID = "syft-text"
func Format() sbom.Format {
return sbom.NewFormat(
ID,
encoder,
nil,
nil,
)
}