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:
parent
653205a767
commit
b7ef256ebf
12 changed files with 12 additions and 12 deletions
|
|
@ -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) ---
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
coreerr "dappco.re/go/core/log"
|
||||
coreerr "dappco.re/go/log"
|
||||
)
|
||||
|
||||
// DaemonOptions configures daemon mode execution.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
//
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import (
|
|||
"os/exec"
|
||||
"strings"
|
||||
|
||||
coreerr "dappco.re/go/core/log"
|
||||
coreerr "dappco.re/go/log"
|
||||
goio "io"
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
coreerr "dappco.re/go/core/log"
|
||||
coreerr "dappco.re/go/log"
|
||||
)
|
||||
|
||||
// Runner orchestrates multiple processes with dependencies.
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue