format things a little nicer

This commit is contained in:
2026-07-26 17:14:10 -07:00
parent 98c8b453a0
commit 29cddc3555
+8 -6
View File
@@ -13,13 +13,15 @@ func main() {
client := &http.Client{} client := &http.Client{}
xml := `<?xml version="1.0" encoding="UTF-8"?> xml := `
<?xml version="1.0" encoding="UTF-8"?>
<d:propfind xmlns:d="DAV:"> <d:propfind xmlns:d="DAV:">
<d:prop> <d:prop>
<d:displayname/> <d:displayname/>
<d:resourcetype/> <d:resourcetype/>
</d:prop> </d:prop>
</d:propfind>` </d:propfind>
`
body := strings.NewReader(xml) body := strings.NewReader(xml)