github.com/kastenhq/syft@v0.0.0-20230821225854-0710af25cdbe/syft/formats/table/format.go (about)

     1  package table
     2  
     3  import (
     4  	"github.com/kastenhq/syft/syft/sbom"
     5  )
     6  
     7  const ID sbom.FormatID = "syft-table"
     8  
     9  func Format() sbom.Format {
    10  	return sbom.NewFormat(
    11  		sbom.AnyVersion,
    12  		encoder,
    13  		nil,
    14  		nil,
    15  		ID, "table",
    16  	)
    17  }