Files
domogeek/vendor/github.com/dolanor/caldav-go/webdav/depth.go
T
2022-04-18 23:01:01 +02:00

10 lines
133 B
Go

package webdav
type Depth string
const (
Depth0 Depth = "0"
Depth1 = "1"
DepthInfinity = "infinity"
)