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