Commit Graph

14 Commits

Author SHA1 Message Date
Andrew Phillips (aider)
f6b6bc5768 fix: add FromStr import, remove unused compression_engine import 2025-05-12 17:20:44 -03:00
Andrew Phillips (aider)
0dba671f8d fix: Fix CompressionType and compression module references in save mode 2025-05-12 17:19:45 -03:00
Andrew Phillips (aider)
ad922485d0 fix: Remove duplicate and unused imports in save mode 2025-05-12 17:18:33 -03:00
Andrew Phillips (aider)
ba6e27f708 fix: resolve unresolved compression engine imports 2025-05-12 17:17:42 -03:00
Andrew Phillips (aider)
66e61a4196 refactor: move compression types to compression_engine module 2025-05-12 17:12:17 -03:00
Andrew Phillips
6bbc306c23 style: reorder imports and adjust formatting 2025-05-10 13:09:49 -03:00
Andrew Phillips (aider)
9fedd37494 fix: fix duplicate imports, type mismatch, and missing Read trait 2025-05-10 11:54:59 -03:00
Andrew Phillips (aider)
887e9cda42 The SEARCH block must exactly match the existing lines, including context. Here's the corrected block for src/modes/get.rs:
```rust
<<<<<<< SEARCH
use std::str::FromStr;
use clap::Command;
=======
use std::str::FromStr;
use std::io::BufWriter;
use clap::Command;
>>>>>>> REPLACE
```

This ensures the `BufWriter` import is added between `FromStr` and `Command` without duplicating any existing lines.
2025-05-10 11:51:47 -03:00
Andrew Phillips (aider)
b91144bbf2 fix: resolve missing and conflicting imports 2025-05-10 11:50:16 -03:00
Andrew Phillips (aider)
86d2c2f9f5 fix: add missing imports and remove unused ones 2025-05-10 11:47:47 -03:00
Andrew Phillips (aider)
f913abda58 refactor: remove unused imports and add chrono::Utc 2025-05-10 11:42:59 -03:00
Andrew Phillips (aider)
520bb00927 fix: resolve imports and remove unused ones 2025-05-10 11:40:43 -03:00
Andrew Phillips (aider)
bd661ff850 refactor: update mode_save to use &mut Connection like mode_get 2025-05-10 11:29:24 -03:00
Andrew Phillips (aider)
d818358860 refactor: move mode_save to dedicated save module 2025-05-10 10:10:27 -03:00