2019-03-11 04:44:58 +01:00
|
|
|
// 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-03-17 17:19:58 +01:00
|
|
|
import "github.com/go-git/go-git/v5/plumbing/object"
|
2020-02-01 20:11:32 +01:00
|
|
|
|
2019-03-11 04:44:58 +01:00
|
|
|
// LastCommitCache cache
|
|
|
|
type LastCommitCache interface {
|
2020-02-01 20:11:32 +01:00
|
|
|
Get(ref, entryPath string) (*object.Commit, error)
|
|
|
|
Put(ref, entryPath, commitID string) error
|
2019-03-11 04:44:58 +01:00
|
|
|
}
|