Fixed typo lol

This commit is contained in:
Sebastian Cabrera 2023-08-28 20:41:03 -04:00
parent cd631cc01f
commit 4c06fc6af2

View file

@ -25,7 +25,7 @@ func initGitHubClient() {
func listenForWebhook() { func listenForWebhook() {
log.Println("Listening on :3333......") log.Println("Listening on :3333......")
http.HandleFunc("/", new wr) http.HandleFunc("/", webHandle)
http.HandleFunc("/webhook", webhookHandler) http.HandleFunc("/webhook", webhookHandler)
err := http.ListenAndServe(":3333", nil) err := http.ListenAndServe(":3333", nil)