aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/99designs/gqlgen/cmd/version.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-07-09 13:22:59 +0200
committerMichael Muré <batolettre@gmail.com>2019-07-09 13:22:59 +0200
commit14022953823fc768849b6cc826b05b61a89b7626 (patch)
tree4d4f70ee46b9cc230d6602cb066c697f8a0a4e8e /vendor/github.com/99designs/gqlgen/cmd/version.go
parenta5c42b7c11fc082d47027ba5e0dbdeddcc14e62e (diff)
downloadgit-bug-14022953823fc768849b6cc826b05b61a89b7626.tar.gz
graphql: don't use the gqlgen command to generate to avoid pulling urfave/cli
Diffstat (limited to 'vendor/github.com/99designs/gqlgen/cmd/version.go')
-rw-r--r--vendor/github.com/99designs/gqlgen/cmd/version.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/vendor/github.com/99designs/gqlgen/cmd/version.go b/vendor/github.com/99designs/gqlgen/cmd/version.go
deleted file mode 100644
index 8b7442d4..00000000
--- a/vendor/github.com/99designs/gqlgen/cmd/version.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package cmd
-
-import (
- "fmt"
-
- "github.com/99designs/gqlgen/graphql"
- "github.com/urfave/cli"
-)
-
-var versionCmd = cli.Command{
- Name: "version",
- Usage: "print the version string",
- Action: func(ctx *cli.Context) {
- fmt.Println(graphql.Version)
- },
-}