taskcafe/internal/command/user.go

10 lines
186 B
Go
Raw Permalink Normal View History

2022-05-06 23:41:52 +02:00
package command
import "github.com/spf13/cobra"
func newUserCmd() *cobra.Command {
cc := cobra.Command{Use: "user"}
cc.AddCommand(newUserListCmd(), newUserCreateCmd())
return &cc
}