domogeek/vendor/github.com/dolanor/caldav-go/webdav/depth.go

10 lines
133 B
Go
Raw Permalink Normal View History

2022-04-18 10:47:47 +00:00
package webdav
type Depth string
const (
Depth0 Depth = "0"
Depth1 = "1"
DepthInfinity = "infinity"
)