From 4c06fc6af29480edbd7fd90da7d9509eaf3b4334 Mon Sep 17 00:00:00 2001 From: okseby Date: Mon, 28 Aug 2023 20:41:03 -0400 Subject: [PATCH] Fixed typo lol --- bot/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/utils.go b/bot/utils.go index 872231f..7331df5 100644 --- a/bot/utils.go +++ b/bot/utils.go @@ -25,7 +25,7 @@ func initGitHubClient() { func listenForWebhook() { log.Println("Listening on :3333......") - http.HandleFunc("/", new wr) + http.HandleFunc("/", webHandle) http.HandleFunc("/webhook", webhookHandler) err := http.ListenAndServe(":3333", nil)