diff options
Diffstat (limited to 'graphql/models/models.go')
-rw-r--r-- | graphql/models/models.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/graphql/models/models.go b/graphql/models/models.go index c492103c..1f182f1a 100644 --- a/graphql/models/models.go +++ b/graphql/models/models.go @@ -1,8 +1,15 @@ package models -import "github.com/MichaelMure/git-bug/cache" +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 +} |