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

Updated `coreerr "dappco.re/go/core/log"` → `coreerr "dappco.re/go/log"`
in actions.go, angular.go, cdp.go, console.go, webview.go. No stale
path remains in .go.

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

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Codex 2026-04-24 21:48:32 +01:00
parent fd48da8cec
commit cc4a1eb70a
5 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ import (
"time"
core "dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// Action represents a browser action that can be performed.

View file

@ -6,7 +6,7 @@ import (
"time"
core "dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// AngularHelper provides Angular-specific testing utilities.

2
cdp.go
View file

@ -15,7 +15,7 @@ import (
"time"
core "dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
"github.com/gorilla/websocket"
)

View file

@ -11,7 +11,7 @@ import (
"time"
core "dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// ConsoleWatcher provides advanced console message watching capabilities.

View file

@ -31,7 +31,7 @@ import (
"time"
core "dappco.re/go/core"
coreerr "dappco.re/go/core/log"
coreerr "dappco.re/go/log"
)
// Webview represents a connection to a Chrome DevTools Protocol endpoint.