zelenko

Results 4 comments of zelenko

In some cases if this error appears it means instead of JS object need to pass a string: `JSON.stringify(value)`.

`CTRL+ALT+I` Works for me. LiteIDE Version: X38.3 Go Version: 1.22.5 OS: Linux amd64

Use `HostSwitch` to host multiple domains. ``` import ( "fmt" "log" "net/http" ) type HostSwitch map[string]http.Handler // Implement the ServerHTTP method func (hs HostSwitch) ServeHTTP(w http.ResponseWriter, r *http.Request) { if...