// Command mfer generates and verifies file manifests. package main import ( "os" "sneak.berlin/go/mfer/internal/cli" ) // Appname is the name of this program. const Appname = "mfer" // Version and Gitrev are injected at build time via -ldflags. // //nolint:gochecknoglobals // set via ldflags at build time var ( Version string Gitrev string ) func main() { os.Exit(cli.Run(Appname, Version, Gitrev)) }