Skip to content

Commit

Permalink
print
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekg999 committed Sep 28, 2024
1 parent 423cc28 commit 81bb9b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hook/handlers/index.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package handlers

import (
"fmt"
"io"
"net/http"
"strings"
Expand Down Expand Up @@ -36,7 +37,7 @@ func Index(w http.ResponseWriter, r *http.Request) {

for key, values := range r.Header {
for _, value := range values {
println(key, value)
fmt.Println("Header:", key, value)
}
}

Expand Down

0 comments on commit 81bb9b3

Please sign in to comment.