2025-01-27 17:12:45 +01:00
|
|
|
package obidefault
|
|
|
|
|
|
2025-03-11 17:14:40 +01:00
|
|
|
var __compress__ = false
|
2025-01-27 17:12:45 +01:00
|
|
|
|
|
|
|
|
func CompressOutput() bool {
|
2025-03-11 17:14:40 +01:00
|
|
|
return __compress__
|
2025-01-27 17:12:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func SetCompressOutput(b bool) {
|
2025-03-11 17:14:40 +01:00
|
|
|
__compress__ = b
|
2025-01-27 17:12:45 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-11 17:14:40 +01:00
|
|
|
func CompressOutputPtr() *bool {
|
|
|
|
|
return &__compress__
|
2025-01-27 17:12:45 +01:00
|
|
|
}
|