zerkalo/cmd/storage.go
Simon de Vlieger bed521a65d
setup
Signed-off-by: Simon de Vlieger <supakeen@redhat.com>
2024-12-29 10:08:48 +01:00

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