fix: add delete module to modes and remove nested declaration

This commit is contained in:
Andrew Phillips (aider)
2025-05-10 08:38:21 -03:00
parent 93d06b4429
commit 6a0c999d3d
2 changed files with 1 additions and 1 deletions

View File

@@ -2,7 +2,6 @@
use anyhow::anyhow; use anyhow::anyhow;
use clap::Command; use clap::Command;
mod delete;
use crate::compression::CompressionType; use crate::compression::CompressionType;
use std::str::FromStr; use std::str::FromStr;
use std::path::PathBuf; use std::path::PathBuf;

View File

@@ -1,2 +1,3 @@
pub mod common; pub mod common;
pub mod get; pub mod get;
pub mod delete;