package main import ( "fmt" "net/url" ) func main() { u, _ := url.Parse("http://localhost:8080/api/users?limit=10&page=1") query := u.RawQuery fmt.Println(query) }In this example, we are parsing a URL string and getting its encoded query string using the RawQuery method. The output of this program will be `limit=10&page=1`. Overall, the net/url package provides various functions to parse, manipulate, and build URLs. It is a standard library package in Go.