File: url_unix.go

package info (click to toggle)
golang-github-hashicorp-go-getter 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid
  • size: 936 kB
  • sloc: makefile: 5
file content (11 lines) | stat: -rw-r--r-- 130 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
// +build !windows

package url

import (
	"net/url"
)

func parse(rawURL string) (*url.URL, error) {
	return url.Parse(rawURL)
}