Skip to content

Commit 3b61613

Browse files
author
Dmitriy Garanzha
committed
Fix import.
1 parent 84b7f0e commit 3b61613

File tree

6 files changed

+32
-13
lines changed

6 files changed

+32
-13
lines changed

Gopkg.lock

Lines changed: 27 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
version = "1.2.1"
44

55
[[constraint]]
6-
branch = "master"
6+
revision = "66487607e2081c7c2af2281c62c14ee000d5024b"
77
name = "golang.org/x/tools"
88

99
[prune]

dataloaden.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/EGT-Ukraine/dataloaden/pkg/generator"
8+
"github.com/vektah/dataloaden/pkg/generator"
99
)
1010

1111
func main() {

example/pkgname/user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package differentpkg
22

3-
//go:generate go run ../../dataloaden.go ../../template.go -keys string github.com/vektah/dataloaden/example.User
3+
//go:generate go run ../../dataloaden.go -keys string github.com/vektah/dataloaden/example.User

example/slice/user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:generate go run ../../dataloaden.go ../../template.go -keys int -slice github.com/vektah/dataloaden/example.User
1+
//go:generate go run ../../dataloaden.go -keys int -slice github.com/vektah/dataloaden/example.User
22

33
package slice
44

example/user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:generate go run ../dataloaden.go ../template.go -keys string github.com/vektah/dataloaden/example.User
1+
//go:generate go run ../dataloaden.go -keys string github.com/vektah/dataloaden/example.User
22

33
package example
44

0 commit comments

Comments
 (0)