aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/models/models.go
blob: 1f182f1a36b662301a1fbbc7568c00131e39bb3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package models

import (
	"github.com/MichaelMure/git-bug/cache"
)

type Repository struct {
	Cache cache.Cacher
	Repo  cache.RepoCacher
}

type RepositoryMutation struct {
	Cache cache.Cacher
	Repo  cache.RepoCacher
}