We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d017cc commit 85432a6Copy full SHA for 85432a6
locate.go
@@ -78,6 +78,9 @@ func main() {
78
// Clients request access tokens for specific services.
79
mux.HandleFunc("/v2beta1/query/", http.HandlerFunc(c.TranslatedQuery))
80
81
+ // REQUIRED: API keys parameters required for priority requests.
82
+ mux.HandleFunc("/v2/priority/nearest/", http.HandlerFunc(c.TranslatedQuery))
83
+
84
srv := &http.Server{
85
Addr: ":" + listenPort,
86
Handler: mux,
0 commit comments