1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-26 05:37:18 +02:00
lazygit/pkg/commands/models/status_line.go

9 lines
144 B
Go
Raw Normal View History

2021-03-14 18:46:22 +11:00
package models
type IStatusLine interface {
GetHasUnstagedChanges() bool
GetHasStagedChanges() bool
GetIsTracked() bool
GetPath() string
}