go-devops/cmd/deploy/cmd_commands.go

18 lines
317 B
Go
Raw Normal View History

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