2020-01-30 12:18:05 +00:00
|
|
|
// Package caldav provides a client and server CalDAV implementation.
|
|
|
|
//
|
|
|
|
// CalDAV is defined in RFC 4791.
|
|
|
|
package caldav
|
2020-01-30 12:51:02 +00:00
|
|
|
|
|
|
|
type Calendar struct {
|
|
|
|
Path string
|
|
|
|
Name string
|
|
|
|
Description string
|
|
|
|
MaxResourceSize int64
|
|
|
|
}
|