mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
12 lines
290 B
Go
12 lines
290 B
Go
|
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
|
||
|
}
|