gitee_cli/cmd/user/user.go

13 lines
175 B
Go
Raw Normal View History

2024-04-07 17:49:39 +08:00
package user
import "github.com/spf13/cobra"
var UserCmd = &cobra.Command{
Use: "user",
Short: "User related command",
}
func init() {
UserCmd.AddCommand(SearchCmd)
}