20 lines
379 B
Go
20 lines
379 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(storageCmd)
|
|
}
|
|
|
|
var storageCmd = &cobra.Command{
|
|
Use: "storage",
|
|
Short: "Interact with the storage used by zerkalo",
|
|
//Long: `All software has versions. This is Hugo's`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("Hugo Static Site Generator v0.9 -- HEAD")
|
|
},
|
|
}
|