2024-06-14 02:11:26 +08:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2024-10-19 16:29:40 +08:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2024-06-14 02:11:26 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// rootCmd represents the base command when called without any subcommands
|
|
|
|
var rootCmd = &cobra.Command{
|
|
|
|
Use: "tools",
|
|
|
|
Short: "A set of useful tools for writing in weblog",
|
|
|
|
}
|
|
|
|
|
|
|
|
func Execute() {
|
|
|
|
err := rootCmd.Execute()
|
|
|
|
if err != nil {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|