github.com/nextlinux/gosbom@v0.81.1-0.20230627115839-1ff50c281391/gosbom/pkg/cataloger/generic/parser.go (about) 1 package generic 2 3 import ( 4 "github.com/nextlinux/gosbom/gosbom/artifact" 5 "github.com/nextlinux/gosbom/gosbom/file" 6 "github.com/nextlinux/gosbom/gosbom/linux" 7 "github.com/nextlinux/gosbom/gosbom/pkg" 8 ) 9 10 type Environment struct { 11 LinuxRelease *linux.Release 12 } 13 14 type Parser func(file.Resolver, *Environment, file.LocationReadCloser) ([]pkg.Package, []artifact.Relationship, error)