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)