Mirror of a distributed, offline-first bug tracker embedded in git
1package models 2 3import ( 4 "github.com/MichaelMure/git-bug/cache" 5) 6 7type Repository struct { 8 Cache cache.Cacher 9 Repo cache.RepoCacher 10} 11 12type RepositoryMutation struct { 13 Cache cache.Cacher 14 Repo cache.RepoCacher 15}