1
0

Fixed ical-go package include

This commit is contained in:
kolaente
2019-05-24 19:45:33 +02:00
parent a7bbaf7c5f
commit 24f06b2da5
15 changed files with 126 additions and 56 deletions

17
vendor/github.com/laurent22/ical-go/calendar.go generated vendored Normal file
View File

@ -0,0 +1,17 @@
package ical
type Calendar struct {
Items []CalendarEvent
}
func (this *Calendar) Serialize() string {
serializer := calSerializer{
calendar: this,
buffer: new(strBuffer),
}
return serializer.serialize()
}
func (this *Calendar) ToICS() string {
return this.Serialize()
}