bdgm-play 0.2.6

A simple CLI BDGM player
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::app::run;

mod app;
mod args;
mod dump;
mod error;

fn main() {
    match run() {
        Ok(_) => {}
        Err(e) => eprintln!("{e}"),
    }
}