summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Didron <fdidron@users.noreply.github.com>2019-06-03 16:11:10 +0800
committerGitHub <noreply@github.com>2019-06-03 16:11:10 +0800
commite9ea65ba0b18534075aa467fc186586b837e5092 (patch)
tree9b366282214914779bf9c628eba1dcc8f9b3bd72
parentcf8fda389d08f9ee87fc83c42e8f796248cd54a2 (diff)
parent6fdb75a2acb65be5a7461c1259766637be67df63 (diff)
Merge pull request #8 from rishka/go-get-cli1.0.1-win
Use specific import paths for wally subpackages
-rw-r--r--cli/main.go2
-rw-r--r--ui.go2
-rw-r--r--ui_dev.go2
-rw-r--r--ui_dist.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/cli/main.go b/cli/main.go
index d9aba07..7a6ef1a 100644
--- a/cli/main.go
+++ b/cli/main.go
@@ -8,7 +8,7 @@ import (
"os"
"path/filepath"
"time"
- "wally/wally"
+ "github.com/zsa/wally/wally"
)
func main() {
diff --git a/ui.go b/ui.go
index 0df5c85..c5ba2ef 100644
--- a/ui.go
+++ b/ui.go
@@ -2,7 +2,7 @@ package main
import (
"github.com/fdidron/webview"
- "wally/wally"
+ "github.com/zsa/wally/wally"
)
func handleRPC(w webview.WebView, data string, s *wally.State) {
diff --git a/ui_dev.go b/ui_dev.go
index 31507be..8958b90 100644
--- a/ui_dev.go
+++ b/ui_dev.go
@@ -4,7 +4,7 @@ package main
import (
"github.com/fdidron/webview"
- "wally/wally"
+ "github.com/zsa/wally/wally"
)
// Init returns a configured and ready to use webview.
diff --git a/ui_dist.go b/ui_dist.go
index 5570966..80fdf39 100644
--- a/ui_dist.go
+++ b/ui_dist.go
@@ -4,7 +4,7 @@ package main
import (
"github.com/fdidron/webview"
- "wally/wally"
+ "github.com/zsa/wally/wally"
)
// Init returns a configured and ready to use webview.