major-pickems-sim 0.3.0

Tool for analysing pick'ems for Counter-Strike major tournaments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(not(feature = "pprof"))]
mod cli;

#[cfg(not(feature = "pprof"))]
fn main() -> anyhow::Result<()> {
    cli::args::Args::parse().map_or_else(
        || Err(anyhow::anyhow!("failed to parse CLI arguments")),
        cli::run,
    )
}

#[cfg(feature = "pprof")]
mod pprof;

#[cfg(feature = "pprof")]
fn main() {
    pprof::run();
}