emersion / go-webdav

A Go library for WebDAV, CalDAV and CardDAV
MIT License
314 stars 66 forks source link

webdav: introduce CopyOptions #136

Closed emersion closed 7 months ago

emersion commented 8 months ago

Not super happy about the negative bool fields…

emersion commented 8 months ago

Another solution would be to use pointers:

type CopyOptions struct {
    Recursive *bool // defaults to true
    Overwrite *bool // defaults to true
}

But it's cumbersome to set the fields (requires an intermediate variable).