From cc4a1eb70a6599dae444f82f93adb82da81ecc0d Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 24 Apr 2026 21:48:32 +0100 Subject: [PATCH] fix(go-webview): update stale coreerr alias to dappco.re/go/log (AX-6) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- actions.go | 2 +- angular.go | 2 +- cdp.go | 2 +- console.go | 2 +- webview.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/actions.go b/actions.go index 3ad237e..ebe8193 100644 --- a/actions.go +++ b/actions.go @@ -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. diff --git a/angular.go b/angular.go index 1bb5480..76c1e77 100644 --- a/angular.go +++ b/angular.go @@ -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. diff --git a/cdp.go b/cdp.go index cefdc0b..ba31188 100644 --- a/cdp.go +++ b/cdp.go @@ -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" ) diff --git a/console.go b/console.go index 713ee48..abfc26b 100644 --- a/console.go +++ b/console.go @@ -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. diff --git a/webview.go b/webview.go index 11bb0f2..c111eff 100644 --- a/webview.go +++ b/webview.go @@ -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.