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