aboutsummaryrefslogtreecommitdiff
path: root/solutions/binarytrees_quit.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2019-04-05 09:46:04 +0700
committerShulhan <m.shulhan@gmail.com>2020-01-25 14:16:13 +0700
commit02e7993b01945e5e9a26f2afb74c364029ac2ce1 (patch)
treed5878b5ac2a6de27293d236c44db4e49f2684e85 /solutions/binarytrees_quit.go
parentb0f1cfed2c059e491959fef76075c71fad2e2c9e (diff)
downloadgolang-id-tour-02e7993b01945e5e9a26f2afb74c364029ac2ce1.tar.xz
all: update module, repository, and import path
Since this repository use Go module now, to minimize unneeded dependency to "golang.org/x/tour", we rename the import path on directory "contents" and "solutions" to use our repository.
Diffstat (limited to 'solutions/binarytrees_quit.go')
-rw-r--r--solutions/binarytrees_quit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/solutions/binarytrees_quit.go b/solutions/binarytrees_quit.go
index 076bd66..b07c7d1 100644
--- a/solutions/binarytrees_quit.go
+++ b/solutions/binarytrees_quit.go
@@ -9,7 +9,7 @@ package main
import (
"fmt"
- "golang.org/x/tour/tree"
+ "github.com/Go-ID-community/go-tour-id/tree"
)
func walkImpl(t *tree.Tree, ch, quit chan int) {