planner/sync/client/client.go

13 lines
189 B
Go
Raw Normal View History

2024-09-18 07:09:25 +02:00
package client
2024-09-11 07:50:27 +02:00
import (
"time"
2024-09-18 07:55:14 +02:00
2024-09-20 07:09:30 +02:00
"go-mod.ewintr.nl/planner/item"
2024-09-11 07:50:27 +02:00
)
2024-10-17 07:29:53 +02:00
type Client interface {
Update(items []item.Item) error
Updated(ks []item.Kind, ts time.Time) ([]item.Item, error)
2024-09-11 07:50:27 +02:00
}