mirror of
https://github.com/SrIzan10/sern-cli.git
synced 2026-05-01 11:05:17 +00:00
16 lines
353 B
Go
16 lines
353 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/sern-handler/cli/pkg/extra"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var extraCmd = &cobra.Command{
|
|
Use: "extra",
|
|
Short: "Add extra tools to your Sern project.",
|
|
Long: `Add extra tools to your Sern project to help you with the setup and development.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
extra.Execute()
|
|
},
|
|
}
|