Fixed ical-go package include
This commit is contained in:
17
vendor/github.com/laurent22/ical-go/calendar.go
generated
vendored
Normal file
17
vendor/github.com/laurent22/ical-go/calendar.go
generated
vendored
Normal 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()
|
||||
}
|
Reference in New Issue
Block a user