Files
archived-sern-cli/cmd/cli/init.go
2022-05-29 20:13:43 +02:00

17 lines
327 B
Go

package cli
import (
"fmt"
"github.com/spf13/cobra"
)
var initCmd = &cobra.Command{
Use: "init",
Short: "Initialize a new Sern project.",
Long: `Initialize a new Sern project, either with a JavaScript or a TypeScript template.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Sern CLI - Init")
},
}