caldav: add Client.FindCalendars

This commit is contained in:
Simon Ser
2020-01-30 13:51:02 +01:00
parent 936b9451cc
commit bae7dcce43
3 changed files with 66 additions and 0 deletions

View File

@@ -2,3 +2,10 @@
//
// CalDAV is defined in RFC 4791.
package caldav
type Calendar struct {
Path string
Name string
Description string
MaxResourceSize int64
}