如何使用 cobra 实现多个选项

How to implement multiple options with cobra

我试试这个: projCmd.Flags().StringVarP(&flag, "type", "t", flag, "help")

但是,如何像这样使用 cobra 实现多个选项: mycli new -t one -n two

在第二行添加您要添加​​的下一个选项。您不限于使用一个。

例如:

projCmd.Flags().StringVarP(&flag, "type", "t", flag, "help")
projCmd.Flags().StringVarP(&flag2, "some", "s", flag2, "some description")