aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/99designs/gqlgen/codegen/interface.go
blob: 2de0c88a9b3de01c0f2ddd9bde267a280f4e774e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package codegen

type Interface struct {
	*NamedType

	Implementors []InterfaceImplementor
}

type InterfaceImplementor struct {
	ValueReceiver bool

	*NamedType
}