resolvething 0.6.0

A CLI tool to resolve syncthing conflicts and duplicate files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::{Parser, Subcommand};

#[derive(Parser)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Option<Commands>,
}

#[derive(Subcommand)]
pub enum Commands {
    /// Find duplicate files, select which file to keep, delete the rest
    Dupes,
    /// Merge files wich have been modified on multiple devices
    Conflicts,
    /// Run all commands
    All,
}