mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 17:03:17 +01:00
9 lines
195 B
Go
9 lines
195 B
Go
package model
|
|
|
|
type Relationship struct {
|
|
Parent string `json:"parent"`
|
|
Child string `json:"child"`
|
|
Type string `json:"type"`
|
|
Metadata interface{} `json:"metadata"`
|
|
}
|