mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
10 lines
198 B
Go
10 lines
198 B
Go
package pkg
|
|
|
|
// Deprecated: use Collection instead
|
|
type Catalog = Collection
|
|
|
|
// Deprecated: use NewCollection() instead
|
|
func NewCatalog(pkgs ...Package) *Catalog {
|
|
return NewCollection(pkgs...)
|
|
}
|