summaryrefslogtreecommitdiffstats
path: root/pkg/commands/models/file_change_interface.go
blob: 5413b076f107d931854759a49bf814d80f5daf8d (plain)
1
2
3
4
5
6
7
8
package models

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