mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-11 02:58:14 -07:00
12 lines
268 B
Rust
12 lines
268 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 fields;
|
|
mod tree;
|
|
|
|
pub use fields::*;
|
|
pub use tree::*;
|