taskcafe/internal/graph/resolver.go

19 lines
386 B
Go
Raw Normal View History

//go:generate sh ../scripts/genSchema.sh
2020-04-10 04:40:22 +02:00
//go:generate go run github.com/99designs/gqlgen
2020-04-10 04:40:22 +02:00
package graph
import (
"sync"
"github.com/jordanknott/taskcafe/internal/config"
2020-08-07 03:50:35 +02:00
"github.com/jordanknott/taskcafe/internal/db"
2020-04-10 04:40:22 +02:00
)
// Resolver handles resolving GraphQL queries & mutations
2020-04-10 04:40:22 +02:00
type Resolver struct {
Repository db.Repository
AppConfig config.AppConfig
mu sync.Mutex
2020-04-10 04:40:22 +02:00
}