Update 58 files from forge.lthn.ai/core/go/pkg/cli to forge.lthn.ai/core/cli/pkg/cli. Also fix pre-existing broken imports: cmd/workspace → go-agentic, cmd/dev → self-reference. Resolves circular dependency that caused qa docblock stub in core/go. Co-Authored-By: Virgil <virgil@lethean.io>
15 lines
289 B
Go
15 lines
289 B
Go
package deploy
|
|
|
|
import (
|
|
"forge.lthn.ai/core/cli/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)
|
|
}
|