Move module identity to our own Forgejo instance. All import paths updated across 434 Go files, sub-module go.mod files, and go.work. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
268 B
Go
13 lines
268 B
Go
package main
|
|
|
|
import (
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
|
|
// Build variants import commands via self-registration.
|
|
// See internal/variants/ for available variants: full, ci, php, minimal.
|
|
_ "forge.lthn.ai/core/cli/internal/variants"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main()
|
|
}
|