refactor: move mode_get to modes/get module and update imports

This commit is contained in:
Andrew Phillips (aider)
2025-05-09 16:37:19 -03:00
parent a68be7905e
commit f7a53dfa6e
3 changed files with 11 additions and 1 deletions

9
src/modes/get.rs Normal file
View File

@@ -0,0 +1,9 @@
use std::io;
use std::path::PathBuf;
use std::collections::HashMap;
use anyhow::{Context, Result, Error, anyhow};
use clap::Command;
use crate::db;
use crate::compression::{CompressionType, get_engine};