mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
9 lines
134 B
Go
9 lines
134 B
Go
package models
|
|
|
|
import "github.com/MichaelMure/git-bug/cache"
|
|
|
|
type Repository struct {
|
|
Cache cache.Cacher
|
|
Repo cache.RepoCacher
|
|
}
|