2026-02-21 19:38:18 +00:00
|
|
|
package deploy
|
|
|
|
|
|
|
|
|
|
import (
|
2026-02-22 23:27:33 +00:00
|
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
2026-02-21 19:38:18 +00:00
|
|
|
"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)
|
|
|
|
|
}
|