2019-03-11 09:14:58 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package git
|
|
|
|
|
2020-02-02 00:41:32 +05:30
|
|
|
import "gopkg.in/src-d/go-git.v4/plumbing/object"
|
|
|
|
|
2019-03-11 09:14:58 +05:30
|
|
|
// LastCommitCache cache
|
|
|
|
type LastCommitCache interface {
|
2020-02-02 00:41:32 +05:30
|
|
|
Get(ref, entryPath string) (*object.Commit, error)
|
|
|
|
Put(ref, entryPath, commitID string) error
|
2019-03-11 09:14:58 +05:30
|
|
|
}
|