18 lines
226 B
Go
Raw Normal View History

2016-08-13 21:44:36 +08:00
package ws
type Config struct {
2016-09-30 16:53:40 +02:00
ConnectionReuse bool
Path string
2016-08-13 21:44:36 +08:00
}
func (this *Config) Apply() {
effectiveConfig = this
}
var (
effectiveConfig = &Config{
ConnectionReuse: true,
Path: "",
}
)