mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* improve struct and field comments and incorporate into json schema Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * address review feedback Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
14 lines
462 B
Go
14 lines
462 B
Go
package pkg
|
|
|
|
// HomebrewFormula represents metadata about a Homebrew formula package extracted from formula JSON files.
|
|
type HomebrewFormula struct {
|
|
// Tap is Homebrew tap this formula belongs to (e.g. "homebrew/core")
|
|
Tap string `json:"tap,omitempty"`
|
|
|
|
// Homepage is the upstream project homepage URL
|
|
Homepage string `json:"homepage,omitempty"`
|
|
|
|
// Description is a human-readable formula description
|
|
Description string `json:"description,omitempty"`
|
|
}
|