//! Simple program to play Texas Holdem in a command-line interface (CLI) like your terminal, uses the [dealrs::texas::cli] module.
useclap::Parser;usedealrs::texas::cli;/// Entrypoint for the Texas Holdem CLI program, which just parses and runs the CLI from the provided arguments.
fnmain()->Result<(), Box<dyn std::error::Error>>{cli::Args::parse().run()}