Skip to content

Commit 8e4b3aa

Browse files
authored
Merge pull request #1 from graphql-go/scaffolding
{go.mod,go.sum,main}: Adding initial scaffolding project.
2 parents 4f5f162 + 387ec35 commit 8e4b3aa

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

go.mod

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module graphql-go/compatibility-unit-tests
2+
3+
go 1.22.2
4+
5+
require (
6+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7+
github.com/spf13/cobra v1.8.1 // indirect
8+
github.com/spf13/pflag v1.0.5 // indirect
9+
)

go.sum

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
2+
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
3+
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
4+
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
5+
github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM=
6+
github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y=
7+
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
8+
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
9+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
10+
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

main.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"strings"
6+
7+
"github.com/spf13/cobra"
8+
)
9+
10+
func main() {
11+
compatibility := &cobra.Command{
12+
Use: "compatibility",
13+
Short: "Check compatibility validation against the GraphQL standard reference implementation.",
14+
Long: `This command allows you to compare a GraphQL implementation against the official reference implementation.`,
15+
Args: cobra.MinimumNArgs(1),
16+
Run: func(cmd *cobra.Command, args []string) {
17+
fmt.Println("Print: " + strings.Join(args, " "))
18+
},
19+
}
20+
21+
var rootCmd = &cobra.Command{Use: "app"}
22+
rootCmd.AddCommand(compatibility)
23+
rootCmd.Execute()
24+
}

0 commit comments

Comments
 (0)