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