27 lines
567 B
Go
27 lines
567 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var rootCmd = &cobra.Command{
|
||
|
Use: "hugo",
|
||
|
Short: "Hugo is a very fast static site generator",
|
||
|
Long: `A Fast and Flexible Static Site Generator built with
|
||
|
love by spf13 and friends in Go.
|
||
|
Complete documentation is available at https://gohugo.io/documentation/`,
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
fmt.Println("Test.")
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func Execute() {
|
||
|
if err := rootCmd.Execute(); err != nil {
|
||
|
fmt.Fprintln(os.Stderr, err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|