mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-21 21:47:32 +02:00
10 lines
234 B
Go
10 lines
234 B
Go
package models
|
|
|
|
// sometimes we need to deal with either a node (which contains a file) or an actual file
|
|
type IFileChange interface {
|
|
GetHasUnstagedChanges() bool
|
|
GetHasStagedChanges() bool
|
|
GetIsTracked() bool
|
|
GetPath() string
|
|
}
|