iching 0.5.0

An app for divination with the I-Ching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::ValueEnum;

#[derive(Copy, Clone, Debug, PartialEq, Eq, ValueEnum)]
pub enum DivinationMethod {
    /// The ancient yarrow stalk method of divination.
    ///
    /// See [this Wikipedia article](https://en.wikipedia.org/wiki/I_Ching_divination#Yarrow_stalks) for more info.
    AncientYarrowStalk,
    /// The coin toss method of divination.
    ///
    /// See [this Wikipedia article](https://en.wikipedia.org/wiki/I_Ching_divination#Coins) for more info.
    CoinToss,
}