Skip to content

Commit 00f2586

Browse files
committed
Fix Go module build
Fixes neugram#245
1 parent d472ff9 commit 00f2586

36 files changed

+9
-2
lines changed

go.mod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module neugram.io/ng
2+
3+
go 1.11
4+
5+
require github.com/mattn/go-sqlite3 v1.10.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/mattn/go-sqlite3 v1.10.0 h1:jbhqpg7tQe4SupckyijYiy0mJJ/pRyHvXf7JdWK860o=
2+
github.com/mattn/go-sqlite3 v1.10.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc=

jupyter/jupyter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import (
5353
"sync"
5454
"time"
5555

56-
"github.com/sideshowdave7/gomq/zmtp"
56+
"neugram.io/ng/internal/github.com/sideshowdave7/gomq/zmtp"
5757
"neugram.io/ng/ngcore"
5858
)
5959

ngcore/ngcore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ import (
2424
"sync"
2525
"time"
2626

27-
"github.com/peterh/liner"
2827
"neugram.io/ng/eval"
2928
"neugram.io/ng/eval/environ"
3029
"neugram.io/ng/eval/shell"
3130
"neugram.io/ng/format"
31+
"neugram.io/ng/internal/github.com/peterh/liner"
3232
"neugram.io/ng/parser"
3333
)
3434

0 commit comments

Comments
 (0)