mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-12 21:05:48 +02:00
9 lines
212 B
Go
9 lines
212 B
Go
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
|
|
}
|