10 lines
133 B
Go
10 lines
133 B
Go
|
package webdav
|
||
|
|
||
|
type Depth string
|
||
|
|
||
|
const (
|
||
|
Depth0 Depth = "0"
|
||
|
Depth1 = "1"
|
||
|
DepthInfinity = "infinity"
|
||
|
)
|