actually marshal XML data

This commit is contained in:
2026-07-27 21:52:42 -07:00
parent b263f0b0c1
commit cdb79f75b5
3 changed files with 34 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
package main
type MultiStatus struct {
Responses []Response `xml:"response"`
}
type Response struct {
Href string `xml:"href"`
PropStat []PropStat `xml:"propstat"`
}
type PropStat struct {
Prop Prop `xml:"prop"`
Status string `xml:"status"`
}
type Prop struct {
DisplayName string `xml:"displayname"`
}