caretta-sync-cli 0.0.2

A local-first application framework for lazy person
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::cli::ConfigArgs;
use caretta_sync_core::utils::runnable::Runnable;
use clap::Args;

#[derive(Debug, Args)]
pub struct DeviceListCommandArgs {
    #[command(flatten)]
    config: ConfigArgs,
}

impl Runnable for DeviceListCommandArgs {
    fn run(self, app_name: &'static str) {
        todo!()
    }
}