mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
15 lines
297 B
Go
15 lines
297 B
Go
package packages
|
|
|
|
import (
|
|
"github.com/anchore/syft/syft/distro"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
"github.com/anchore/syft/syft/source"
|
|
)
|
|
|
|
type PresenterConfig struct {
|
|
SourceMetadata source.Metadata
|
|
Catalog *pkg.Catalog
|
|
Distro *distro.Distro
|
|
Scope source.Scope
|
|
}
|