1use clap::Subcommand; 2 3use crate::cli::find::{Config, Remote}; 4 5/// Sync repos 6#[derive(Debug, Subcommand)] 7pub enum Sync { 8 /// Sync repos from config 9 Config(Config), 10 11 /// Sync repos from remote 12 Remote(Remote), 13}