15 lines
288 B
Go
15 lines
288 B
Go
package prod
|
|
|
|
import (
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
)
|
|
|
|
func init() {
|
|
cli.RegisterCommands(AddProdCommands)
|
|
}
|
|
|
|
// AddProdCommands registers the 'prod' command and all subcommands.
|
|
// Usage: prod.AddProdCommands(root)
|
|
func AddProdCommands(root *cli.Command) {
|
|
root.AddCommand(Cmd)
|
|
}
|