mirror of
https://github.com/openziti/zrok.git
synced 2024-11-29 19:43:26 +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)
|
||
|
}
|