mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
21 lines
312 B
Go
21 lines
312 B
Go
package main
|
|
|
|
import (
|
|
"github.com/anchore/imgbom/cmd"
|
|
)
|
|
|
|
var (
|
|
version = "No version provided"
|
|
commit = "No commit provided"
|
|
buildTime = "No build timestamp provided"
|
|
)
|
|
|
|
func main() {
|
|
cmd.SetVersion(&cmd.Version{
|
|
Version: version,
|
|
Commit: commit,
|
|
BuildTime: buildTime,
|
|
})
|
|
|
|
cmd.Execute()
|
|
} |