mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
17 lines
191 B
Go
17 lines
191 B
Go
package table
|
|
|
|
import (
|
|
"github.com/anchore/syft/syft/sbom"
|
|
)
|
|
|
|
const ID sbom.FormatID = "syft-table"
|
|
|
|
func Format() sbom.Format {
|
|
return sbom.NewFormat(
|
|
ID,
|
|
encoder,
|
|
nil,
|
|
nil,
|
|
)
|
|
}
|