mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-10-17 20:31:19 +03:00
9 lines
144 B
Go
9 lines
144 B
Go
package models
|
|
|
|
type IStatusLine interface {
|
|
GetHasUnstagedChanges() bool
|
|
GetHasStagedChanges() bool
|
|
GetIsTracked() bool
|
|
GetPath() string
|
|
}
|