From bbdaf5c3f3835e20ea93e424442aee6e1bf0f8ed Mon Sep 17 00:00:00 2001 From: JackDoan Date: Wed, 6 May 2026 15:46:28 -0500 Subject: [PATCH] no --- main.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.go b/main.go index 3931d3f6..8cc1256f 100644 --- a/main.go +++ b/main.go @@ -5,6 +5,8 @@ import ( "fmt" "log/slog" "net" + "net/http" + _ "net/http/pprof" "net/netip" "runtime" "runtime/debug" @@ -34,6 +36,9 @@ func Main(c *config.C, configTest bool, buildVersion string, l *slog.Logger, dev buildVersion = moduleVersion() } + //todo no merge + go http.ListenAndServe(":6060", nil) + // Print the config if in test, the exit comes later if configTest { b, err := yaml.Marshal(c.Settings)