summaryrefslogtreecommitdiffstats
path: root/vendor/code.gitea.io/git/cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/code.gitea.io/git/cache.go')
-rw-r--r--vendor/code.gitea.io/git/cache.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/code.gitea.io/git/cache.go b/vendor/code.gitea.io/git/cache.go
deleted file mode 100644
index dbbbafae4c..0000000000
--- a/vendor/code.gitea.io/git/cache.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// 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
-
-// LastCommitCache cache
-type LastCommitCache interface {
- Get(repoPath, ref, entryPath string) (*Commit, error)
- Put(repoPath, ref, entryPath string, commit *Commit) error
-}