diff options
-rw-r--r-- | src/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go index 1caa14a..3422992 100644 --- a/src/http.go +++ b/src/http.go @@ -38,6 +38,6 @@ func httpStartServer() { } // handle requests to the /api/found endpoint -func apiFoundHandler() { +func apiFoundHandler(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "application/json") } |