mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
16 lines
219 B
Go
16 lines
219 B
Go
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
|
|
}
|