iris/_examples/graphql/schema-first/graph/resolver.go

12 lines
290 B
Go
Raw Normal View History

2023-02-07 02:01:24 +01:00
package graph
import "github.com/iris-contrib/outerbanks-api/graph/model"
// This file will not be regenerated automatically.
//
// It serves as dependency injection for your app, add any dependencies you require here.
type Resolver struct {
CharacterStore map[string]model.Character
}