hs_predict/rules/mod.rs
1//! Rule-based HS code classification engine.
2//!
3//! The engine uses a static CAS → HS mapping table ([`static_table`])
4//! and a shape/purity matcher ([`matcher`]) to classify known compounds
5//! without any LLM calls.
6
7pub mod jp_table;
8pub mod matcher;
9pub mod static_table;
10pub mod types;