//! Builder API for Rust-native geoit usage.
//!
//! This module IS the canonical Rust interface for constructing governances:
//!
//! - [`Algebra`] — binds signature + derived generators, wraps all GA operations
//! - [`GovernanceBuilder`] — chainable builder for governance construction
//! - [`GeomClassBuilder`] — constraint helpers: `null_constraint()`, `normalization()`
//! - [`NamedGovernance`] — string-keyed `construct("Point", ¶ms)`, `govern(&mv, "Point")`
//!
//! A future `.gge` parser targets this API — it calls the same builders the direct user calls.
pub use Algebra;
pub use ;