mayday 0.1.0

A multi-messaging-sevice aggregator into an all-in-one application (android's app beeper-like)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::{Parser, Subcommand};
use once_cell::sync::Lazy;

#[derive(Parser)]
pub struct Args {
    #[clap(subcommand)]
    pub command: Option<Command>,
}

#[derive(Subcommand)]
pub enum Command {
    Worker
}

pub static ARGS: Lazy<Args> = Lazy::new(Args::parse);