mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-28 04:35:40 +00:00
17 lines
327 B
Go
17 lines
327 B
Go
package cmd
|
|
|
|
import (
|
|
"tinyauth/cmd/user/subcommands"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func UserCmd() *cobra.Command {
|
|
userCmd := &cobra.Command{
|
|
Use: "user",
|
|
Short: "User utilities",
|
|
Long: `Utilities for creating and verifying tinyauth compatible users.`,
|
|
}
|
|
userCmd.AddCommand(subcommands.CreateCmd)
|
|
return userCmd
|
|
} |