route/vendor/github.com/hashicorp/go-getter/helper/url/url_unix.go

12 lines
130 B
Go
Raw Normal View History

2017-12-02 23:34:35 +00:00
// +build !windows
package url
import (
"net/url"
)
func parse(rawURL string) (*url.URL, error) {
return url.Parse(rawURL)
}