mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
16 lines
254 B
Swift
16 lines
254 B
Swift
// Copyright (c) 2017 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
|
|
public enum CompressionMethod {
|
|
case bzip2
|
|
case copy
|
|
case deflate
|
|
case lzma
|
|
case lzma2
|
|
case other
|
|
}
|