planner/sync/client/memory.go

23 lines
305 B
Go
Raw Normal View History

2024-10-09 07:26:39 +02:00
package client
import (
"time"
"go-mod.ewintr.nl/planner/item"
)
type Memory struct {
}
func NewMemory() *Memory {
return &Memory{}
}
func (m *Memory) Update(items []item.Item) error {
return nil
}
func (m *Memory) Updated(kw []item.Kind, ts time.Time) ([]item.Item, error) {
return nil, nil
}