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>
17 lines
408 B
Go
17 lines
408 B
Go
//go:build minimal
|
|
|
|
// minimal.go imports only core packages for a minimal binary.
|
|
//
|
|
// Build with: go build -tags minimal
|
|
//
|
|
// This variant includes only the absolute essentials:
|
|
// - doctor: Environment verification
|
|
//
|
|
// Use this for the smallest possible binary with just health checks.
|
|
|
|
package variants
|
|
|
|
import (
|
|
// Commands via self-registration
|
|
_ "forge.lthn.ai/core/cli/internal/cmd/doctor"
|
|
)
|