mirror of
https://github.com/openziti/zrok.git
synced 2024-11-26 18:13:52 +01:00
15 lines
181 B
Go
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)
|
|
}
|