Files
sunhpc-go/cmd/soft/soft.go

17 lines
305 B
Go
Raw Normal View History

2026-02-14 05:36:00 +08:00
package soft
import (
"github.com/spf13/cobra"
)
var Cmd = &cobra.Command{
Use: "soft",
Short: "软件包管理",
Long: "安装、卸载、编译软件支持源码、RPM、DEB、二进制压缩包",
}
func init() {
Cmd.AddCommand(installCmd)
// 后续可添加 remove、list 等子命令
}