mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
22 lines
695 B
Go
22 lines
695 B
Go
package poweruser
|
|
|
|
import (
|
|
"github.com/anchore/syft/internal/config"
|
|
"github.com/anchore/syft/syft/distro"
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
"github.com/anchore/syft/syft/source"
|
|
)
|
|
|
|
type JSONDocumentConfig struct {
|
|
ApplicationConfig config.Application
|
|
PackageCatalog *pkg.Catalog
|
|
FileMetadata map[source.Location]source.FileMetadata
|
|
FileDigests map[source.Location][]file.Digest
|
|
FileClassifications map[source.Location][]file.Classification
|
|
FileContents map[source.Location]string
|
|
Secrets map[source.Location][]file.SearchResult
|
|
Distro *distro.Distro
|
|
SourceMetadata source.Metadata
|
|
}
|