go-devops/cmd/deploy/cmd_commands.go
Snider 400d8a7690 feat: migrate deploy, prod, vm commands from CLI
Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-21 19:38:18 +00:00

15 lines
288 B
Go

package deploy
import (
"forge.lthn.ai/core/go/pkg/cli"
"github.com/spf13/cobra"
)
func init() {
cli.RegisterCommands(AddDeployCommands)
}
// AddDeployCommands registers the 'deploy' command and all subcommands.
func AddDeployCommands(root *cobra.Command) {
root.AddCommand(Cmd)
}