poodle 0.6.3

Not a poodle, but a word-guessing game from your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use clap::Parser;

/// Not a 🐩 (Poodle), but a word-guessing game from your terminal 🟩⬛🟩🟨🟩
#[derive(Debug, Parser)]
#[clap(author)]
#[clap(version)]
#[clap(long_about = None)]
pub struct Cli {
    /// Instruction
    #[clap(arg_enum)]
    pub cmd: Instruction,
}

#[derive(Debug, clap::ArgEnum, Clone)]
pub enum Instruction {
    Start,
    Log,
}