mirror of https://github.com/databricks/cli.git
11 lines
149 B
Go
11 lines
149 B
Go
|
package sync
|
||
|
|
||
|
type diff struct {
|
||
|
put []string
|
||
|
delete []string
|
||
|
}
|
||
|
|
||
|
func (d diff) IsEmpty() bool {
|
||
|
return len(d.put) == 0 && len(d.delete) == 0
|
||
|
}
|