Files
jpictl/cmd/jpictl/main.go
T
2023-10-28 21:22:36 +00:00

25 lines
346 B
Go

// Package main implements the jpictl command
package main
import (
"github.com/spf13/cobra"
)
const (
// CmdName is the name of the executable
CmdName = "jpictl"
)
var (
rootCmd = &cobra.Command{
Use: CmdName,
Short: "control tool for jpi.cloud",
}
)
func main() {
if err := rootCmd.Execute(); err != nil {
fatal(err, "")
}
}