github.com/bendemaree/terraform@v0.5.4-0.20150613200311-f50d97d6eee6/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  }