github.com/anchore/syft@v1.38.2/syft/sbom/writer.go (about)

     1  package sbom
     2  
     3  // Writer an interface to write SBOMs to a destination
     4  type Writer interface {
     5  	Write(SBOM) error
     6  }