Andrew Phillips
dd8f828ed3
refactor: update function parameters to use references where appropriate
2025-05-14 22:09:23 -03:00
Andrew Phillips
0189f3c273
refactor: remove module prefixes from compression and digest engine functions
2025-05-13 15:00:30 -03:00
Andrew Phillips (aider)
8f93657fa1
refactor: consolidate imports for get_*_engine functions
2025-05-13 09:00:45 -03:00
Andrew Phillips (aider)
e15cf371e0
refactor: Update imports to use specific get_engine functions
2025-05-13 08:51:21 -03:00
Andrew Phillips (aider)
9330fc1db9
refactor: Rename get_engine to get_compression_engine and update references
2025-05-13 08:46:41 -03:00
Andrew Phillips (aider)
71a35a77a0
fix: correct compression module imports
2025-05-12 17:16:52 -03:00
Andrew Phillips (aider)
66e61a4196
refactor: move compression types to compression_engine module
2025-05-12 17:12:17 -03:00
Andrew Phillips (aider)
da47077b08
fix: add missing CompressionEngineProgram import and remove unused imports
2025-05-10 14:02:16 -03:00
Andrew Phillips (aider)
a955b2a0c6
refactor: remove unused imports from various files
2025-05-10 13:59:04 -03:00
Andrew Phillips
ceb50a03b3
style: organize and format use statements
2025-05-10 13:38:10 -03:00
Andrew Phillips (aider)
dbf3d70128
feat: Move ColumnType to common and update imports
2025-05-10 13:34:38 -03:00
Andrew Phillips (aider)
86a3a7da61
fix: add missing std::io import and remove unused import
2025-05-10 12:13:20 -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)
86d2c2f9f5
fix: add missing imports and remove unused ones
2025-05-10 11:47:47 -03:00
Andrew Phillips
9feec61759
style: reorder imports and reformat code for consistency
2025-05-10 10:06:33 -03:00
Andrew Phillips (aider)
6a0c999d3d
fix: add delete module to modes and remove nested declaration
2025-05-10 08:38:21 -03:00
Andrew Phillips (aider)
93d06b4429
refactor: Move mode_delete function to src/modes/delete.rs
2025-05-10 08:37:03 -03:00
Andrew Phillips (aider)
60515c628a
refactor: remove unused imports from get.rs
2025-05-10 08:29:08 -03:00
Andrew Phillips (aider)
0f4deae712
feat(get): add clap Command and CompressionType imports
2025-05-10 07:46:57 -03:00
Andrew Phillips (aider)
5ce173fdc1
fix: resolve missing imports and private struct errors
2025-05-10 07:42:07 -03:00
Andrew Phillips (aider)
a53737057f
fix: fix duplicate imports and add missing FromStr for CompressionType
2025-05-10 07:40:00 -03:00
Andrew Phillips (aider)
361e0b3f6f
feat: Implement --get command to retrieve items by ID or tag with compression handling
2025-05-09 16:52:16 -03:00
Andrew Phillips (aider)
008899f6ab
fix: resolve missing functions and unused imports
...
The commit adds `pub` to `mode_get` for visibility and removes unused imports in `src/modes/get.rs`, while adding the missing `get_engine` import.
2025-05-09 16:39:41 -03:00
Andrew Phillips (aider)
f7a53dfa6e
refactor: move mode_get to modes/get module and update imports
2025-05-09 16:37:19 -03:00