taskcafe/internal/graph/resolver.go

15 lines
258 B
Go

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