1
0
Fork 0
forked from dlang/cdcdb

Переход на другую библиотеку

This commit is contained in:
Alexander Zhirov 2025-10-03 19:35:51 +03:00
parent 1f50b21457
commit 0fc56e7c04
Signed by: alexander
GPG key ID: C8D8BE544A27C511
5 changed files with 180 additions and 148 deletions

View file

@ -72,13 +72,13 @@ void main()
}
// Удаление файла
if (storage.deleteFile("example_file"))
writeln("Файл example_file удален.");
// if (storage.deleteFile("example_file"))
// writeln("Файл example_file удален.");
// Проверка: снимки удалены
auto remaining = storage.getSnapshots("example_file");
assert(remaining.length == 0);
writeln("Все снимки удалены.");
// // Проверка: снимки удалены
// auto remaining = storage.getSnapshots("example_file");
// assert(remaining.length == 0);
// writeln("Все снимки удалены.");
writeln("Версия библиотеки: ", storage.getVersion());
// writeln("Версия библиотеки: ", storage.getVersion());
}