kiwimix/pkg/basetypes/event.go

13 lines
173 B
Go
Raw Normal View History

2023-06-20 21:44:50 +00:00
package basetypes
import ics "github.com/PuloV/ics-golang"
// Event type
type Event struct {
ics.Event
}
func (event *Event) Equals(other *Event) bool {
return false
}