taskcafe/api/graph/resolver.go
2020-04-09 21:40:22 -05:00

14 lines
208 B
Go

//go:generate go run github.com/99designs/gqlgen
package graph
import (
"sync"
"github.com/jordanknott/project-citadel/api/pg"
)
type Resolver struct {
Repository pg.Repository
mu sync.Mutex
}