mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-28 10:34:49 -07:00
14 lines
305 B
Rust
14 lines
305 B
Rust
//! Shared code generation logic.
|
|
//!
|
|
//! This module contains generation functions that are parameterized by
|
|
//! the `LanguageSyntax` trait, allowing them to work across all supported
|
|
//! language backends.
|
|
|
|
mod constants;
|
|
mod fields;
|
|
mod tree;
|
|
|
|
pub use constants::*;
|
|
pub use fields::*;
|
|
pub use tree::*;
|