8 lines
168 B
Go
8 lines
168 B
Go
package schema
|
|
|
|
// Type is an interface that all types in the schema implement.
|
|
// Currently these are ObjectType and EnumDefinition.
|
|
type Type interface {
|
|
isType()
|
|
}
|