mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
4183c846e3
Bumps [gopkg.in/src-d/go-git.v4](https://github.com/src-d/go-git) from 4.8.0 to 4.10.0. - [Release notes](https://github.com/src-d/go-git/releases) - [Commits](https://github.com/src-d/go-git/compare/v4.8.0...v4.10.0)
31 lines
879 B
Go
31 lines
879 B
Go
package storage
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"gopkg.in/src-d/go-git.v4/config"
|
|
"gopkg.in/src-d/go-git.v4/plumbing/storer"
|
|
)
|
|
|
|
var ErrReferenceHasChanged = errors.New("reference has changed concurrently")
|
|
|
|
// Storer is a generic storage of objects, references and any information
|
|
// related to a particular repository. The package gopkg.in/src-d/go-git.v4/storage
|
|
// contains two implementation a filesystem base implementation (such as `.git`)
|
|
// and a memory implementations being ephemeral
|
|
type Storer interface {
|
|
storer.EncodedObjectStorer
|
|
storer.ReferenceStorer
|
|
storer.ShallowStorer
|
|
storer.IndexStorer
|
|
config.ConfigStorer
|
|
ModuleStorer
|
|
}
|
|
|
|
// ModuleStorer allows interact with the modules' Storers
|
|
type ModuleStorer interface {
|
|
// Module returns a Storer representing a submodule, if not exists returns a
|
|
// new empty Storer is returned
|
|
Module(name string) (Storer, error)
|
|
}
|