databricks-cli/libs/sync/diff.go

11 lines
149 B
Go
Raw Normal View History

package sync
type diff struct {
put []string
delete []string
}
func (d diff) IsEmpty() bool {
return len(d.put) == 0 && len(d.delete) == 0
}