Files
opencloud/vendor/github.com/go-ldap/ldif/path.go
2023-04-19 20:24:34 +02:00

10 lines
102 B
Go

// +build !windows
package ldif
import "net/url"
func toPath(u *url.URL) string {
return u.Path
}