github.com/emc-advanced-dev/unik@v0.0.0-20190717152701-a58d3e8e33b7/unik.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/sirupsen/logrus"
     5  	"github.com/solo-io/unik/cmd"
     6  )
     7  
     8  func main() {
     9  	if err := cmd.RootCmd.Execute(); err != nil {
    10  		logrus.WithError(err).Fatalf("unik failed")
    11  	}
    12  }