about summary refs log tree commit diff stats
path: root/internal/endpoints/pkgs.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/endpoints/pkgs.go')
-rw-r--r--internal/endpoints/pkgs.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/endpoints/pkgs.go b/internal/endpoints/pkgs.go
new file mode 100644
index 0000000..018dea8
--- /dev/null
+++ b/internal/endpoints/pkgs.go
@@ -0,0 +1,10 @@
+package endpoints // import git.tilde.institute/tilde/api/internal/endpoints
+
+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
+}