swh:1:snp:e77894886b450c6109aac4a3cdd519d6ed38b51f
Raw File
Tip revision: 57dd5c5dd7e3c06f31e5ddd54483257bad0eb532 authored by John Platt on 07 March 2019, 14:09:53 UTC
added run command to test script
Tip revision: 57dd5c5
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