Update all import paths and go.mod deps to dappco.re equivalents. Fix API compat for core v0.8.0-alpha.1: RegisterTask→RegisterAction, core.Task→core.Message handler signatures. Co-Authored-By: Virgil <virgil@lethean.io>
17 lines
316 B
Go
17 lines
316 B
Go
package deploy
|
|
|
|
import (
|
|
"dappco.re/go/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)
|
|
}
|