12 lines
173 B
Go
12 lines
173 B
Go
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
|
|
}
|