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