1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-21 21:47:32 +02:00
lazygit/pkg/commands/models/file_change_interface.go
Jesse Duffield 2b8302bced refactor
2021-03-30 21:57:00 +11:00

9 lines
144 B
Go

package models
type IFileChange interface {
GetHasUnstagedChanges() bool
GetHasStagedChanges() bool
GetIsTracked() bool
GetPath() string
}