aboutsummaryrefslogblamecommitdiffstats
path: root/plumbing/storer/index.go
blob: 33113949b3a43ff76e963a3367a3b1b9b846a02f (plain) (tree)
1
2
3
4
5
6
7
8
9

              
                                                          





                                             
package storer

import "github.com/go-git/go-git/v5/plumbing/format/index"

// IndexStorer generic storage of index.Index
type IndexStorer interface {
	SetIndex(*index.Index) error
	Index() (*index.Index, error)
}