Skip to content

Commit

Permalink
Fix Go module build
Browse files Browse the repository at this point in the history
  • Loading branch information
fhs committed Jun 27, 2019
1 parent d472ff9 commit 00f2586
Show file tree
Hide file tree
Showing 36 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module neugram.io/ng

go 1.11

require github.com/mattn/go-sqlite3 v1.10.0
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/mattn/go-sqlite3 v1.10.0 h1:jbhqpg7tQe4SupckyijYiy0mJJ/pRyHvXf7JdWK860o=
github.com/mattn/go-sqlite3 v1.10.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc=
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion jupyter/jupyter.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import (
"sync"
"time"

"github.com/sideshowdave7/gomq/zmtp"
"neugram.io/ng/internal/github.com/sideshowdave7/gomq/zmtp"
"neugram.io/ng/ngcore"
)

Expand Down
2 changes: 1 addition & 1 deletion ngcore/ngcore.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ import (
"sync"
"time"

"github.com/peterh/liner"
"neugram.io/ng/eval"
"neugram.io/ng/eval/environ"
"neugram.io/ng/eval/shell"
"neugram.io/ng/format"
"neugram.io/ng/internal/github.com/peterh/liner"
"neugram.io/ng/parser"
)

Expand Down

0 comments on commit 00f2586

Please sign in to comment.