...

Source file src/github.com/99designs/gqlgen/codegen/testserver/singlefile/otherpkg/model.go

Documentation: github.com/99designs/gqlgen/codegen/testserver/singlefile/otherpkg

     1  package otherpkg
     2  
     3  type (
     4  	Scalar string
     5  	Map    map[string]string
     6  	Slice  []string
     7  )
     8  
     9  type Struct struct {
    10  	Name Scalar
    11  	Desc *Scalar
    12  }
    13  

View as plain text