psu/cmd/endpoint.go

16 lines
232 B
Go
Raw Permalink Normal View History

2019-07-21 02:00:04 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
// endpointCmd represents the endpoint command
var endpointCmd = &cobra.Command{
Use: "endpoint",
Short: "Manage endpoints",
}
func init() {
rootCmd.AddCommand(endpointCmd)
}