mirror of
https://github.com/sreedevk/deduplicator.git
synced 2026-08-29 19:45:32 +00:00
16 lines
220 B
Rust
16 lines
220 B
Rust
mod app;
|
|
mod file_manager;
|
|
mod output;
|
|
mod params;
|
|
mod scanner;
|
|
mod filters;
|
|
|
|
use anyhow::Result;
|
|
use app::App;
|
|
use clap::Parser;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
App::init(¶ms::Params::parse())
|
|
}
|