blob: 03c9605aae7bd19e756a7b6d1f167d8fe1d209fc (
plain) (
tree)
|
|
package main
import "net/http"
// Query handles the /<format>/query endpoint.
// Accept a query param and responds with the appropriate info.
// ?pkg=$PACKAGENAME
func Query(w http.ResponseWriter, r *http.Request, format string) error {
return nil
}
|