summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_structs.go
blob: 1590ce32ee870ce5d2699f7c77d57cb4df758eb3 (plain)
1
2
3
4
5
6
7
8
9
package commands

// Conflict : A git conflict with a start middle and end corresponding to line
// numbers in the file where the conflict bars appear
type Conflict struct {
	Start  int
	Middle int
	End    int
}