Skip to content

Commit 2b39006

Browse files
committed
move to go modules
1 parent 957de21 commit 2b39006

File tree

172 files changed

+46
-34621
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+46
-34621
lines changed

Gopkg.lock

Lines changed: 0 additions & 130 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 54 deletions
This file was deleted.

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ It's quite small (~3000 lines) and comes with (almost finished) completion to bo
1818
1919
![sample](https://user-images.githubusercontent.com/11337563/50778798-1f8dd680-129f-11e9-89a7-7ac9805ca584.gif)
2020
21+
## Requirements
22+
23+
### Build
24+
25+
* Go version 1.11 or higher
26+
2127
## Installation
2228
2329
For now just install it with
@@ -117,4 +123,4 @@ WIP
117123
* Cache improvements, right now it's just a simple serialized json
118124
* ~~Completion improvements (right now completion, won't event hint query,mutation and subscription until endpoint path is provided)~~
119125
* ~~ZSH completion~~
120-
* Profiles, typing --endpoint with url each time is annoying
126+
* Profiles, typing --endpoint with url each time is annoying

go.mod

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module github.com/slothking-online/gql
2+
3+
require (
4+
github.com/aexol/test_util v0.0.0-20190105143726-b9af6d8a88ab
5+
github.com/agnivade/levenshtein v1.0.1
6+
github.com/davecgh/go-spew v1.1.1
7+
github.com/graphql-go/graphql v0.7.7
8+
github.com/inconshreveable/mousetrap v1.0.0
9+
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
10+
github.com/pmezard/go-difflib v1.0.0
11+
github.com/spf13/cobra v0.0.3
12+
github.com/spf13/pflag v1.0.3
13+
github.com/stretchr/objx v0.1.1
14+
github.com/stretchr/testify v1.2.2
15+
github.com/wolfeidau/unflatten v1.0.1
16+
)

go.sum

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
github.com/aexol/test_util v0.0.0-20190105143726-b9af6d8a88ab h1:JkZxL5t2Je37wp3H/34dT53++YRAqK9nt1yZUhZ9eTI=
2+
github.com/aexol/test_util v0.0.0-20190105143726-b9af6d8a88ab/go.mod h1:c8GXRQh9tQX/gZ+WMdFYen/PmVCyd90gQIDzFpeEkDc=
3+
github.com/agnivade/levenshtein v1.0.1 h1:3oJU7J3FGFmyhn8KHjmVaZCN5hxTr7GxgRue+sxIXdQ=
4+
github.com/agnivade/levenshtein v1.0.1/go.mod h1:CURSv5d9Uaml+FovSIICkLbAUZ9S4RqaHDIsdSBg7lM=
5+
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
6+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
7+
github.com/graphql-go/graphql v0.7.7 h1:nwEsJGwPq9N6cElOO+NYyoWuELAQZ4GuJks0Rlco5og=
8+
github.com/graphql-go/graphql v0.7.7/go.mod h1:k6yrAYQaSP59DC5UVxbgxESlmVyojThKdORUqGDGmrI=
9+
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
10+
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs=
11+
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
12+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
13+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
14+
github.com/spf13/cobra v0.0.3 h1:ZlrZ4XsMRm04Fr5pSFxBgfND2EBVa1nLpiy1stUsX/8=
15+
github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=
16+
github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=
17+
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
18+
github.com/stretchr/objx v0.1.1 h1:2vfRuCMp5sSVIDSqO8oNnWJq7mPa6KVP3iPIwFBuy8A=
19+
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
20+
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
21+
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
22+
github.com/wolfeidau/unflatten v1.0.1 h1:g6feikKsMfZAu1UuaRWNClt0noYv5xJ+4o0lKY81J+8=
23+
github.com/wolfeidau/unflatten v1.0.1/go.mod h1:dbZQrLwnPFvivlqQELHr8oBSZDbGdvBfMOtJE0yDYA4=

vendor/github.com/aexol/test_util/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

vendor/github.com/aexol/test_util/Gopkg.lock

Lines changed: 0 additions & 47 deletions
This file was deleted.

vendor/github.com/aexol/test_util/Gopkg.toml

Lines changed: 0 additions & 34 deletions
This file was deleted.

vendor/github.com/aexol/test_util/errors.go

Lines changed: 0 additions & 17 deletions
This file was deleted.

vendor/github.com/aexol/test_util/roundtripper.go

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)