github.com/2matz/terraform@v0.6.1-0.20150714181608-a03cbdb5d5bd/helper/url/url_unix.go (about) 1 // +build !windows 2 3 package url 4 5 import ( 6 "net/url" 7 ) 8 9 func parse(rawURL string) (*url.URL, error) { 10 return url.Parse(rawURL) 11 }