zrok/util/sync/model.go
2023-11-27 15:44:38 -05:00

15 lines
181 B
Go

package sync
import "time"
type Object struct {
Path string
Size int64
Modified time.Time
ETag string
}
type Target interface {
Inventory() ([]*Object, error)
}