From 908fa9b2e51d7ef552cc5f1438c8b0c11d717570 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Thu, 14 Dec 2023 17:14:20 +0100 Subject: [PATCH] added /packages url to router --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 4efe99e..120a8f2 100644 --- a/main.go +++ b/main.go @@ -88,6 +88,7 @@ func main() { // routes r.Get("/stats", GetStats) + r.Get("/packages", GetPackages) log.Fatal(http.ListenAndServe(":3043", r)) killLoop: