mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
16 lines
232 B
Go
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)
|
|
}
|