diff options
| author | Steve Manuel <nilslice@gmail.com> | 2016-10-26 12:24:53 -0700 |
|---|---|---|
| committer | Steve Manuel <nilslice@gmail.com> | 2016-10-26 12:24:53 -0700 |
| commit | fcea30925bfadb43d0b5895e8aa2ec22bec14b35 (patch) | |
| tree | 6bd9bb6c88537b3b49b3a795119ba0bc8253fa92 /system | |
| parent | 4807ed6caa702a27994799c1f799d25f3630f3ac (diff) | |
debugging
Diffstat (limited to 'system')
| -rw-r--r-- | system/external/server.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/external/server.go b/system/external/server.go index 08f4137..8f40ad1 100644 --- a/system/external/server.go +++ b/system/external/server.go @@ -19,6 +19,8 @@ func init() { } func externalPostsHandler(res http.ResponseWriter, req *http.Request) { + fmt.Println("got request") + res.Header().Set("X-TEST", "Request ack") if req.Method != http.MethodPost { res.WriteHeader(http.StatusMethodNotAllowed) return |
