useclap::Parser;/// Not a 🐩 (Poodle), but a word-guessing game from your terminal 🟩⬛🟩🟨🟩
#[derive(Debug, Parser)]#[clap(author)]#[clap(version)]#[clap(long_about = None)]pubstructCli{/// Instruction
#[clap(arg_enum)]pubcmd: Instruction,
}#[derive(Debug, clap::ArgEnum, Clone)]pubenumInstruction{
Start,
Log,}