mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
17 lines
157 B
Go
17 lines
157 B
Go
package pkg
|
|
|
|
const (
|
|
UnknownPkg uint = iota
|
|
ApkPkg
|
|
DebPkg
|
|
JavaPkg
|
|
NodePkg
|
|
PacmanPkg
|
|
PythonPkg
|
|
RpmPkg
|
|
RubyPkg
|
|
)
|
|
|
|
type Type uint
|
|
|
|
// TODO: stringer... |