cli/internal/variants/minimal.go
Claude 23b82482f2 refactor: rename module from github.com/host-uk/core to forge.lthn.ai/core/cli
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>
2026-02-16 05:53:52 +00:00

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"
)