Commit Graph

4 Commits

Author SHA1 Message Date
Andrew Phillips
9feec61759 style: reorder imports and reformat code for consistency 2025-05-10 10:06:33 -03:00
Andrew Phillips (aider)
1207dfc2c0 fix: correct invalid self import in delete.rs
The original line `use crate::db::self;` was invalid because `self` cannot be used in a `use` statement outside of a list. Changed to `use crate::db;` to properly import the module.
2025-05-10 08:41:08 -03:00
Andrew Phillips (aider)
6c3f717b8d fix: add missing log/rusqlite imports and remove unused imports 2025-05-10 08:39:50 -03:00
Andrew Phillips (aider)
93d06b4429 refactor: Move mode_delete function to src/modes/delete.rs 2025-05-10 08:37:03 -03:00