fix(go-process): update stale coreerr alias to dappco.re/go/log (AX-6)

Updated `coreerr "dappco.re/go/core/log"` → `coreerr "dappco.re/go/log"`
across 12 files (actions.go, daemon.go, errors.go, exec/exec.go,
health.go, pkg/api/provider.go, process.go, process_global.go,
program.go, registry.go, runner.go, service.go). No stale path
remains in .go.

Pre-existing blocker (out of ticket scope): `dappco.re/go/io@v0.4.2`
is 404 from module proxy — affects `go test ./...` but is unrelated
to this import rename.

Closes tasks.lthn.sh/view.php?id=718

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Codex 2026-04-24 21:45:29 +01:00
parent 653205a767
commit b7ef256ebf
12 changed files with 12 additions and 12 deletions

View file

@ -7,7 +7,7 @@ import (
"time"
"dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// --- ACTION messages (broadcast via Core.ACTION) ---

View file

@ -7,7 +7,7 @@ import (
"sync"
"time"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// DaemonOptions configures daemon mode execution.

View file

@ -1,6 +1,6 @@
package process
import coreerr "dappco.re/go/core/log"
import coreerr "dappco.re/go/log"
// ServiceError wraps a service-level failure with a message string.
//

View file

@ -8,7 +8,7 @@ import (
"os/exec"
"strings"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
goio "io"
)

View file

@ -10,7 +10,7 @@ import (
"sync"
"time"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// HealthCheck is a function that returns nil when the service is healthy.

View file

@ -16,7 +16,7 @@ import (
"dappco.re/go/core"
"dappco.re/go/core/api"
"dappco.re/go/core/api/pkg/provider"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
process "dappco.re/go/core/process"
"dappco.re/go/core/ws"
"github.com/gin-gonic/gin"

View file

@ -16,7 +16,7 @@ import (
// Note: banned-imports exception: process lifecycle timing is intrinsic here; core.* helpers are downstream and unavailable at this layer.
"time"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
// Note: banned-imports exception: stdlib io is intrinsic for process pipes; go-process is THE core.Process implementation and cannot self-depend.
goio "io"
)

View file

@ -7,7 +7,7 @@ import (
"sync/atomic"
"dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// Global default service used by package-level helpers.

View file

@ -8,7 +8,7 @@ import (
"unicode"
core "dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// ErrProgramNotFound is returned when Find cannot locate the binary on PATH.

View file

@ -10,7 +10,7 @@ import (
"time"
coreio "dappco.re/go/core/io"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// DaemonEntry records a running daemon in the registry.

View file

@ -5,7 +5,7 @@ import (
"sync"
"time"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// Runner orchestrates multiple processes with dependencies.

View file

@ -17,7 +17,7 @@ import (
"time"
"dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
// Note: banned-imports exception: stdlib io is intrinsic for process pipes; go-process is THE core.Process implementation and cannot self-depend.
goio "io"
)