1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-30 09:16:47 +02:00
lazygit/pkg/commands/git_structs.go

10 lines
212 B
Go
Raw Normal View History

2018-08-12 13:04:47 +02:00
package commands
2018-08-13 12:26:02 +02:00
// 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 {
2018-08-13 13:16:21 +02:00
Start int
Middle int
End int
2018-08-12 13:04:47 +02:00
}