about summary refs log tree commit diff stats
path: root/pkgs.go
blob: 991ba5318c772c2854e257a2dfd1d0b7988a70a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package main

import "net/http"

// Pkgs handles the /<format>/pkgs endpoint.
// Sends a list of installed packages.
func Pkgs(w http.ResponseWriter, r *http.Request, format string) error {

	return nil
}