ots/cmd/ots-cli/main.go

10 lines
102 B
Go

package main
import "os"
func main() {
if err := rootCmd.Execute(); err != nil {
os.Exit(1)
}
}