psu/cmd/endpoint.go
Juan Carlos Mejías Rodríguez c5b1dfaa82 Rewrite project in Go
2019-07-21 18:49:28 -04:00

16 lines
232 B
Go

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)
}