mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
95517d131a
* improve overall documentation Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix tests to use scope.Resolver over scope Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
14 lines
339 B
Go
14 lines
339 B
Go
/*
|
|
Syft is a CLI tool and go library for generating a Software Bill of Materials (SBOM) from container images and filesystems.
|
|
|
|
Note that Syft is both a command line tool as well as a library. See the syft/ child package for library functionality.
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"github.com/anchore/syft/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|