...

Source file src/github.com/99designs/gqlgen/internal/code/testdata/p/p.go

Documentation: github.com/99designs/gqlgen/internal/code/testdata/p

     1  //go:build private
     2  // +build private
     3  
     4  // This file is excluded from the build unless the "private" build tag is set.
     5  // This is used to test loading private packages.
     6  // See internal/code/packages_test.go for more details.
     7  package p
     8  
     9  import (
    10  	"github.com/99designs/gqlgen/internal/code/testdata/b"
    11  )
    12  
    13  var P = b.C + " P"
    14  

View as plain text