mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
12 lines
222 B
Go
12 lines
222 B
Go
package model
|
|
|
|
import (
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/source"
|
|
)
|
|
|
|
type Secrets struct {
|
|
Location source.Coordinates `json:"location"`
|
|
Secrets []file.SearchResult `json:"secrets"`
|
|
}
|