go-devops/cmd/deploy/cmd_commands.go
Snider d97db89866 refactor: replace all cobra imports with core/cli
19 files migrated from github.com/spf13/cobra to
forge.lthn.ai/core/cli/pkg/cli. All cmd/ and build/ packages
now use cli.Command exclusively. Zero direct cobra dependencies
remain in application code.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-09 12:05:13 +00:00

14 lines
261 B
Go

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