kiwimix/pkg/calendarops/calendar_operation.go

9 lines
270 B
Go

package calendarops
import basetypes "code.apps.glenux.net/glenux/kiwimix/pkg/basetypes"
// CalendarOperation defines the interface for operations on calendars.
type CalendarOperation interface {
Execute(calendars ...basetypes.Calendar) (basetypes.Calendar, error)
}