aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/main.go b/main.go
index 89a8608..444e5b0 100644
--- a/main.go
+++ b/main.go
@@ -11,7 +11,6 @@ import (
"syscall"
"time"
- "github.com/prometheus/client_golang/prometheus/promhttp"
"go.lindenii.runxiyu.org/lindenii-common/clog"
)
@@ -104,9 +103,5 @@ func main() {
// IRC bot
go ircBotLoop()
- // Prometheus
- http.Handle("/metrics", promhttp.Handler())
- go http.ListenAndServe(":9112", nil)
-
select {}
}