swh:1:snp:e77894886b450c6109aac4a3cdd519d6ed38b51f
Raw File
Tip revision: 826657c14602a3f36263f3d6769451af0a75d18a authored by shibuiwilliam on 20 August 2018, 02:36:42 UTC
Corrected typos in hyperband example yml (#146)
Tip revision: 826657c
katibctl.go
package main

import (
	"fmt"
	"os"

	"github.com/kubeflow/katib/cmd/cli/command"
)

//Entry point
func main() {
	//init command
	katibctl := command.NewRootCommand()
	if err := katibctl.Execute(); err != nil {
		fmt.Println(err)
		os.Exit(1)
	}

}
back to top