15 lines
318 B
Go
15 lines
318 B
Go
|
package url
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
)
|
||
|
|
||
|
// Parse parses rawURL into a URL structure.
|
||
|
// The rawURL may be relative or absolute.
|
||
|
//
|
||
|
// Parse is a wrapper for the Go stdlib net/url Parse function, but returns
|
||
|
// Windows "safe" URLs on Windows platforms.
|
||
|
func Parse(rawURL string) (*url.URL, error) {
|
||
|
return parse(rawURL)
|
||
|
}
|