Merge pull request #26 from rowbawts/dev

Fixed typo lol
This commit is contained in:
Sebastian Cabrera 2023-08-28 20:41:25 -04:00 committed by GitHub
commit cb2e9470a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)