github.com/kubeshop/testkube@v1.17.23/contrib/executor/soapui/cmd/tools/main.go (about)

     1  package main
     2  
     3  import "github.com/kubeshop/testkube/cmd/tools/commands"
     4  
     5  var (
     6  	commit  string
     7  	version string
     8  	builtBy string
     9  	date    string
    10  )
    11  
    12  func init() {
    13  	// pass data from goreleaser to commands package
    14  	commands.Version = version
    15  	commands.BuiltBy = builtBy
    16  	commands.Commit = commit
    17  	commands.Date = date
    18  }
    19  
    20  func main() {
    21  	commands.Execute()
    22  }