about summary refs log blame commit diff stats
path: root/query.go
blob: 03c9605aae7bd19e756a7b6d1f167d8fe1d209fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
            









                                                                         
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
}