Files
brk/crates/brk_bindgen/src/generate/mod.rs
T
2026-01-11 17:19:00 +01:00

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::*;