utils-cli 1.1.1

a compilation of utility scripts for every day use in building applications and using certain features on my laptop
1
2
3
4
5
6
7
8
9
10
11
12
use serde::Serialize;

/// SMS commands
#[derive(clap::Args, Debug, Serialize)]
pub struct DownloadCommands {}

impl DownloadCommands {
    /// parse the commands
    pub fn _parse() -> Self {
        Self {}
    }
}