Implemented zip and tar compressing and decompressing. Implemented chunked file uploading

This commit is contained in:
2025-03-24 22:15:05 +01:00
parent 4046579c42
commit f56f94a03b
18 changed files with 573 additions and 55 deletions

View File

@@ -0,0 +1,7 @@
namespace MoonlightServers.DaemonShared.Enums;
public enum CompressType
{
Zip = 0,
TarGz = 1
}