github.com/hellofresh/janus@v0.0.0-20230925145208-ce8de8183c67/main.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/hellofresh/janus/cmd"
     5  	log "github.com/sirupsen/logrus"
     6  )
     7  
     8  var version = "0.0.0-dev"
     9  
    10  func main() {
    11  	rootCmd := cmd.NewRootCmd(version)
    12  
    13  	if err := rootCmd.Execute(); err != nil {
    14  		log.WithError(err).Fatal("Could not run command")
    15  	}
    16  }