module Compression.Type ( Compression (..) ) where data Compression = Lzma | Lzip | BZip | GZip | Zstd #ifdef BROTLI | Brotli #endif #ifdef SNAPPY | Snappy #endif | Lzo | Lz4 | Z | None deriving (Show, Enum)