cervo 0.1.0

High level APIs for RL in games.
Documentation
/*!
Command line tools for cervo.
*/

mod commands;

use anyhow::Result;
use clap::Parser;
use commands::Command;

#[derive(Parser, Debug)]
#[clap(author, version, about, long_about = None)]
struct Tractor {
    #[clap(subcommand)]
    command: Command,
}

fn main() -> Result<()> {
    tracing_subscriber::fmt::init();
    let args = Tractor::parse();

    commands::run(args.command)
}