zerkalo/cmd/storage.go

21 lines
379 B
Go
Raw Permalink Normal View History

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")
},
}