models.go
 1// Package models contains the various GraphQL data models
 2package models
 3
 4import (
 5	"github.com/MichaelMure/git-bug/cache"
 6)
 7
 8type Repository struct {
 9	Cache *cache.MultiRepoCache
10	Repo  *cache.RepoCache
11}
12
13type RepositoryMutation struct {
14	Cache *cache.MultiRepoCache
15	Repo  *cache.RepoCache
16}