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