...

Source file src/github.com/99designs/gqlgen/codegen/testserver/followschema/ptr_to_any.go

Documentation: github.com/99designs/gqlgen/codegen/testserver/followschema

     1  package followschema
     2  
     3  type PtrToAnyContainer struct {
     4  	PtrToAny *any
     5  }
     6  
     7  func (c *PtrToAnyContainer) Binding() *any {
     8  	return c.PtrToAny
     9  }
    10  

View as plain text