Files
forge/internal/cmd/install.go
zhaoyupeng c53c15fa8c chore: caddy config file(json)
nginx: proxy version api
2025-12-05 18:39:30 +08:00

22 lines
366 B
Go

package cmd
import (
"github.com/spf13/cobra"
"yizhisec.com/hsv2/forge/internal/cmd/installcmd"
)
func installCmd() *cobra.Command {
_cmd := &cobra.Command{
Use: "install",
Short: "Install the project",
Long: `Install the built project to the specified location.`,
}
_cmd.AddCommand(
installcmd.Check(),
installcmd.Prepare(),
)
return _cmd
}