mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
90a45b4c09
Underline the fact that it's fine to use RepoCache alone
23 lines
328 B
Go
23 lines
328 B
Go
package models
|
|
|
|
import (
|
|
"github.com/MichaelMure/git-bug/cache"
|
|
)
|
|
|
|
type ConnectionInput struct {
|
|
After *string
|
|
Before *string
|
|
First *int
|
|
Last *int
|
|
}
|
|
|
|
type Repository struct {
|
|
Cache *cache.MultiRepoCache
|
|
Repo *cache.RepoCache
|
|
}
|
|
|
|
type RepositoryMutation struct {
|
|
Cache *cache.MultiRepoCache
|
|
Repo *cache.RepoCache
|
|
}
|