tenhou_json/
lib.rs

1//! # tenhou-json
2//!
3//! Tenhou JSON parser.
4//!
5//! # Usage
6//!
7//! ```
8//! let content :: String = std::fs::read_to_string("/your/json/path")?;
9//! let tenhou_json :: TenhouJson = parse_tenhou_json(&content)?;
10//! ```
11//!
12//! # Install
13//!
14//! ```
15//! cargo add tenhou-json
16//! ```
17
18pub mod score;
19#[rustfmt::skip]
20pub mod calc;
21pub mod exporter;
22pub mod model;
23pub mod parser;