github.com/paketo-buildpacks/packit@v1.3.2-0.20211206231111-86b75c657449/bom.go (about)

     1  package packit
     2  
     3  // BOMEntry contains a bill of materials entry.
     4  type BOMEntry struct {
     5  	// Name represents the name of the entry.
     6  	Name string `toml:"name"`
     7  
     8  	// Metadata is the metadata of the entry.  Optional.
     9  	Metadata interface{} `toml:"metadata,omitempty"`
    10  }
    11  
    12  // UnmetEntry contains the name of an unmet dependency from the build process
    13  type UnmetEntry struct {
    14  	// Name represents the name of the entry.
    15  	Name string `toml:"name"`
    16  }