Files
brk/crates/brk_bindgen/src/generate/mod.rs
2026-01-14 11:12:31 +01:00

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