uwubot 0.1.0

discord bot for uwuifying text
Documentation
use structopt::StructOpt;

#[derive(Debug, StructOpt)]
pub struct Args {
    /// Discord Bot's Client API key
    pub client_secret: String,

    /// Discord guild ID to register slash commands for
    #[structopt(short, long)]
    pub guild_id: Option<u64>,

    /// Discord Bot Client ID to register slash commands for
    #[structopt(short, long)]
    pub client_id: u64,
}

impl Args {
    pub fn from_args() -> Self {
        StructOpt::from_args()
    }
}