You've already forked panic-cli
mirror of
https://github.com/Print-and-Panic/panic-cli.git
synced 2026-01-21 10:17:41 -08:00
16 lines
236 B
Go
16 lines
236 B
Go
package persona
|
|
|
|
import (
|
|
"github.com/Print-and-Panic/panic-cli/cmd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var PersonaCmd = &cobra.Command{
|
|
Use: "persona",
|
|
Short: "Persona management",
|
|
}
|
|
|
|
func init() {
|
|
cmd.RootCmd.AddCommand(PersonaCmd)
|
|
}
|