summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2019-01-25 15:26:55 +0000
committerNick White <git@njw.name>2019-01-25 15:26:55 +0000
commit78da255c88719db8231d615b956ef99ada6d9f5d (patch)
treecb3c59706e2c584f24c671e3e506a3e0669026ad
parent524fd9bde90fbe9c6e985ead5e6eac284192f427 (diff)
Update location of libraries
-rw-r--r--bucket-lines/bucket.go2
-rw-r--r--bucket-lines/main.go6
-rw-r--r--lib/hocr/lines.go2
-rw-r--r--lib/prob/prob.go2
4 files changed, 6 insertions, 6 deletions
diff --git a/bucket-lines/bucket.go b/bucket-lines/bucket.go
index 5d9271a..db87418 100644
--- a/bucket-lines/bucket.go
+++ b/bucket-lines/bucket.go
@@ -8,7 +8,7 @@ import (
"sort"
"strconv"
- "git.rescribe.xyz/testingtools/lib/line"
+ "rescribe.xyz/go.git/lib/line"
)
type BucketSpec struct {
diff --git a/bucket-lines/main.go b/bucket-lines/main.go
index b70e358..ab6f977 100644
--- a/bucket-lines/main.go
+++ b/bucket-lines/main.go
@@ -9,9 +9,9 @@ import (
"os"
"path/filepath"
- "git.rescribe.xyz/testingtools/lib/line"
- "git.rescribe.xyz/testingtools/lib/hocr"
- "git.rescribe.xyz/testingtools/lib/prob"
+ "rescribe.xyz/go.git/lib/line"
+ "rescribe.xyz/go.git/lib/hocr"
+ "rescribe.xyz/go.git/lib/prob"
)
func main() {
diff --git a/lib/hocr/lines.go b/lib/hocr/lines.go
index 4902b40..985c7d0 100644
--- a/lib/hocr/lines.go
+++ b/lib/hocr/lines.go
@@ -14,7 +14,7 @@ import (
"path/filepath"
"strings"
- "git.rescribe.xyz/testingtools/lib/line"
+ "rescribe.xyz/go.git/lib/line"
)
func parseLineDetails(h Hocr, i image.Image, name string) (line.Details, error) {
diff --git a/lib/prob/prob.go b/lib/prob/prob.go
index 0299a96..55d2629 100644
--- a/lib/prob/prob.go
+++ b/lib/prob/prob.go
@@ -6,7 +6,7 @@ import (
"strconv"
"strings"
- "git.rescribe.xyz/testingtools/lib/line"
+ "rescribe.xyz/go.git/lib/line"
)
func getLineAvg(f string) (float64, error) {