added /packages url to router

This commit is contained in:
2023-12-14 17:14:20 +01:00
parent f55d73b13a
commit 908fa9b2e5

View File

@@ -88,6 +88,7 @@ func main() {
// routes
r.Get("/stats", GetStats)
r.Get("/packages", GetPackages)
log.Fatal(http.ListenAndServe(":3043", r))
killLoop: