1package cmd
2
3import (
4 "fmt"
5
6 "github.com/99designs/gqlgen/graphql"
7 "github.com/urfave/cli"
8)
9
10var versionCmd = cli.Command{
11 Name: "version",
12 Usage: "print the version string",
13 Action: func(ctx *cli.Context) {
14 fmt.Println(graphql.Version)
15 },
16}