syft/main.go

15 lines
339 B
Go
Raw Normal View History

/*
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.
*/
2020-05-12 14:45:18 +00:00
package main
import (
2020-07-24 00:54:04 +00:00
"github.com/anchore/syft/cmd"
2020-05-12 14:45:18 +00:00
)
func main() {
cmd.Execute()
2020-05-13 00:43:46 +00:00
}