swh:1:snp:e77894886b450c6109aac4a3cdd519d6ed38b51f
Raw File
Tip revision: 6ad60bcdec83e75183ab61a3f9cc0537c3793105 authored by YujiOshima on 31 July 2018, 06:03:47 UTC
update exampledoc
Tip revision: 6ad60bc
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