Skip to content

Instantly share code, notes, and snippets.

@rubiojr
Last active May 9, 2020 15:38
Show Gist options
  • Save rubiojr/97f9c266fe6b8d64239c28220bf121e2 to your computer and use it in GitHub Desktop.
Save rubiojr/97f9c266fe6b8d64239c28220bf121e2 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/url"
)
func main() {
u, _ := url.Parse(`file:///c:/go`)
fmt.Println(u.Path) // prints /c:/go
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment