fix: remove trailing newline

pull/2/head
Petr Razumov 2023-04-04 16:46:49 +03:00
parent 3199a7d961
commit 23659b2ac9
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ func main() {
return
}
ii.Info.Printf("/u/point/%s/%s POST request", pauth, tmsg)
fmt.Fprintln(w, PointMsg(edb, db, udb, pauth, tmsg))
fmt.Fprint(w, PointMsg(edb, db, udb, pauth, tmsg))
})
http.HandleFunc("/x/c/", func(w http.ResponseWriter, r *http.Request) {
enames := strings.Split(r.URL.Path[5:], "/")