mirror of
https://github.com/1f349/go-webdav.git
synced 2024-12-22 16:24:14 +00:00
11 lines
166 B
Go
11 lines
166 B
Go
package webdav
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
type currentUserPrincipal struct {
|
|
XMLName xml.Name `xml:"DAV: current-user-principal"`
|
|
Href string `xml:"href"`
|
|
}
|