Alex Goodman f999604a29
migrate location and file metadata to the file package
Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
2022-03-22 18:21:35 -04:00

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"`
}