базовая логика скачивания обновлений

This commit is contained in:
2026-03-22 01:04:16 +04:00
parent 4b1cecbefd
commit 73d8798bb9
39 changed files with 2372 additions and 1017 deletions
@@ -0,0 +1,18 @@
import 'client_hash_entry.dart';
final class LocalClientFile implements ClientHashEntry {
@override
final String path;
@override
final int size;
@override
final String sha256;
const LocalClientFile({
required this.path,
required this.size,
required this.sha256,
});
}