zrok/util/sync/model.go

15 lines
181 B
Go
Raw Normal View History

2023-11-27 21:44:38 +01:00
package sync
import "time"
type Object struct {
Path string
Size int64
Modified time.Time
ETag string
}
type Target interface {
Inventory() ([]*Object, error)
}