ambient.go
1package cmd
2
3import (
4 // Import and ignore the ambient imports listed below so dependency managers
5 // don't prune unused code for us. Both lists should be kept in sync.
6 _ "github.com/99designs/gqlgen/graphql"
7 _ "github.com/99designs/gqlgen/graphql/introspection"
8 _ "github.com/vektah/gqlparser"
9 _ "github.com/vektah/gqlparser/ast"
10)