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

10 lines
133 B
Go

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