jocalsend 1.6.180

A terminal implementation of the LocalSend protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::ffi::OsString;

use clap::Parser;

#[derive(Debug, Parser)]
#[clap(author, version, about)]
pub struct Cli {
    /// File to pre-select for sending.
    #[clap(long, short)]
    pub file: Option<OsString>,

    /// Text string to send.
    #[clap(long, short)]
    pub text: Option<String>,
}