mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
11 lines
288 B
C#
11 lines
288 B
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompatApiClient.Compression;
|
|
|
|
public interface ICompressor
|
|
{
|
|
string EncodingType { get; }
|
|
Task<long> CompressAsync(Stream source, Stream destination);
|
|
Task<long> DecompressAsync(Stream source, Stream destination);
|
|
} |