feat(deps): implement dependency auto-completion and interactive installation CLI (#147)

This commit is contained in:
duorameng
2026-07-10 08:45:26 +08:00
parent f0967abc6f
commit 3354f3d5ed
11 changed files with 442 additions and 7 deletions
+2
View File
@@ -2,6 +2,7 @@ package cmd
import (
"github.com/engigu/baihu-panel/cmd/builtininstall"
"github.com/engigu/baihu-panel/cmd/depinstall"
"github.com/engigu/baihu-panel/cmd/reposync"
"github.com/engigu/baihu-panel/cmd/resetpwd"
"github.com/engigu/baihu-panel/cmd/restore"
@@ -25,5 +26,6 @@ var Handlers = map[string]CommandHandler{
"version": version.Run,
"-v": version.Run,
"-V": version.Run,
"depinstall": depinstall.Run,
// "migrate": migrate.Run,
}