| 12345678910111213141516171819202122 | package wsimport (	"encoding/json")func (this *Config) UnmarshalJSON(data []byte) error {	type JsonConfig struct {		ConnectionReuse bool   `json:"connectionReuse"`		Path            string `json:"Path"`	}	jsonConfig := &JsonConfig{		ConnectionReuse: true,		Path:            "",	}	if err := json.Unmarshal(data, jsonConfig); err != nil {		return err	}	this.ConnectionReuse = jsonConfig.ConnectionReuse	this.Path = jsonConfig.Path	return nil}
 |