diff options
| author | Jeff Carr <[email protected]> | 2024-10-26 20:09:59 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-26 20:09:59 -0500 |
| commit | 3c1efcba0e6d5757aea38b0c2067fdbb26be8105 (patch) | |
| tree | fbc91a529cbee31a72ffc303fc1cf9da2fc36449 /http.go | |
| parent | 7837182d532dcc022ca2ffafa9289640ac942195 (diff) | |
start worked by sending protobuf
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'http.go')
| -rw-r--r-- | http.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,9 +5,9 @@ import ( "net/http" "strings" + pb "go.wit.com/lib/protobuf/virtbuf" "go.wit.com/lib/virtigoxml" "go.wit.com/log" - pb "go.wit.com/lib/protobuf/virtbuf" ) // remove '?' part and trailing '/' @@ -104,7 +104,7 @@ func okHandler(w http.ResponseWriter, r *http.Request) { } log.Warn("BAD URL =", tmp) - fmt.Fprintln(w, "BAD URL", tmp) + fmt.Fprintln(w, "BAD URL tmp =", tmp) } // write a file out to the http socket |
