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
279 B
Go
15 lines
279 B
Go
package prod
|
|
|
|
import (
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cli.RegisterCommands(AddProdCommands)
|
|
}
|
|
|
|
// AddProdCommands registers the 'prod' command and all subcommands.
|
|
func AddProdCommands(root *cobra.Command) {
|
|
root.AddCommand(Cmd)
|
|
}
|