chipzen-sdk 0.3.0

CLI for the Chipzen poker bot SDK — scaffold and validate bot projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! CLI internals for `chipzen-sdk`. Exposed as a library so integration
//! tests can drive `scaffold_bot` and `validate_bot` directly without
//! shelling out to the binary.

pub mod cli;
pub mod scaffold;
pub mod validate;

pub use scaffold::{scaffold_bot, ScaffoldOptions, _DOCKERFILE_TEMPLATE_FOR_TEST};
pub use validate::{
    validate_bot, Severity, ValidateOptions, ValidationResult, DEFAULT_MAX_UPLOAD_BYTES,
};