summaryrefslogtreecommitdiffstats
path: root/pkg/commands/models/file_change_interface.go
blob: 76d313d1a24905e420cba750d68607ec8555cfe7 (plain)
1
2
3
4
5
6
7
8
9
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
}