taskcafe/internal/graph/resolver.go

15 lines
258 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
package graph
import (
"sync"
"github.com/jordanknott/project-citadel/api/internal/db"
2020-04-10 04:40:22 +02:00
)
type Resolver struct {
Repository db.Repository
2020-04-10 04:40:22 +02:00
mu sync.Mutex
}