15 lines
250 B
Go
15 lines
250 B
Go
package get
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var GetCmd = &cobra.Command{
|
|
Use: "get",
|
|
Aliases: []string{"ls", "l"},
|
|
Short: "Commands for getting metadata",
|
|
}
|
|
|
|
func init() {
|
|
GetCmd.AddCommand(GetFacetsCmd)
|
|
GetCmd.AddCommand(GetRouteCmd)
|
|
}
|