github.com/rmenn/terraform@v0.3.8-0.20150225065417-fc84b3a78802/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  }