aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/commit_info.go
blob: 83e23545de526b8cd5f70bf4e4dc4c23572e3505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 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

// CommitInfo describes the first commit with the provided entry
type CommitInfo struct {
	Entry         *TreeEntry
	Commit        *Commit
	SubModuleFile *SubModuleFile
}