File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
runtime/runtime-core/native/src/aws/smithy/kotlin/runtime/compression Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 55package aws.smithy.kotlin.runtime.compression
66
77import aws.smithy.kotlin.runtime.content.ByteStream
8+ import platform.zlib.*
89
910/* *
1011 * The gzip compression algorithm.
@@ -13,10 +14,8 @@ import aws.smithy.kotlin.runtime.content.ByteStream
1314 * See: https://en.wikipedia.org/wiki/Gzip
1415 */
1516public actual class Gzip : CompressionAlgorithm {
16- actual override val id: String
17- get() = TODO (" Not yet implemented" )
18- actual override val contentEncoding: String
19- get() = TODO (" Not yet implemented" )
17+ actual override val id: String = " gzip"
18+ actual override val contentEncoding: String = " gzip"
2019
2120 actual override fun compress (stream : ByteStream ): ByteStream {
2221 TODO (" Not yet implemented" )
You can’t perform that action at this time.
0 commit comments