mtp-rs-cli 0.2.0

Universal MTP file transfer CLI built on mtp-rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Subcommand implementations.
//!
//! Each subcommand exposes a single `pub async fn run(...)` (or `pub fn run`
//! for sync ones) that takes the parsed `Cli` plus any command-specific args.
//! Per-command output structs stay private to their file; shared output
//! shapes live in `super::output`.

pub mod cp;
pub mod devices;
pub mod doctor;
pub mod get;
pub mod info;
pub mod ls;
pub mod mkdir;
pub mod mv;
pub mod put;
pub mod rename;
pub mod rm;