github.com/operandinc/gqlgen@v0.16.1/ambient.go (about)

     1  package main
     2  
     3  // Ambient imports
     4  //
     5  // These imports are referenced by the generated code.
     6  // Dependency managers like dep have been known to prune them,
     7  // so explicitly import them here.
     8  //
     9  // TODO: check if these imports are still necessary with go
    10  // modules, and if so move the ambient import to the files
    11  // where they are actually referenced
    12  import (
    13  	_ "github.com/operandinc/gqlgen/graphql"
    14  	_ "github.com/operandinc/gqlgen/graphql/handler"
    15  	_ "github.com/operandinc/gqlgen/graphql/introspection"
    16  	_ "github.com/operandinc/gqlgen/handler"
    17  	_ "github.com/vektah/gqlparser/v2"
    18  	_ "github.com/vektah/gqlparser/v2/ast"
    19  )