go-build/cmd/ci/cmd.go
Virgil 479e6cb8e9 chore(ax): tighten naming and docs
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-31 18:37:59 +00:00

21 lines
381 B
Go

// Package ci registers release lifecycle commands.
//
// ci.AddCICommands(root)
package ci
import (
"forge.lthn.ai/core/cli/pkg/cli"
)
func init() {
cli.RegisterCommands(AddCICommands)
}
// AddCICommands registers the 'ci' command and all subcommands.
//
// ci.AddCICommands(root)
func AddCICommands(root *cli.Command) {
setCII18n()
initCIFlags()
root.AddCommand(ciCmd)
}