mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
16 lines
210 B
Go
16 lines
210 B
Go
package obidefault
|
|
|
|
var __compress__ = false
|
|
|
|
func CompressOutput() bool {
|
|
return __compress__
|
|
}
|
|
|
|
func SetCompressOutput(b bool) {
|
|
__compress__ = b
|
|
}
|
|
|
|
func CompressOutputPtr() *bool {
|
|
return &__compress__
|
|
}
|