carddav: add very basic Client

This commit is contained in:
Simon Ser
2020-01-14 22:19:54 +01:00
parent 931602e55d
commit 3d05533a31
5 changed files with 59 additions and 2 deletions

10
carddav/elements.go Normal file
View File

@@ -0,0 +1,10 @@
package carddav
import (
"encoding/xml"
)
type addressbookHomeSet struct {
Name xml.Name `xml:"urn:ietf:params:xml:ns:carddav addressbook-home-set"`
Href string `xml:"href"`
}