mirror of
https://github.com/SrIzan10/sern-cli.git
synced 2026-05-01 11:05:17 +00:00
17 lines
327 B
Go
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")
|
|
},
|
|
}
|