9 lines
150 B
Rust
9 lines
150 B
Rust
|
|
/*!
|
||
|
|
* Code Generation Module - Generate code from BID definitions
|
||
|
|
*/
|
||
|
|
|
||
|
|
pub mod generator;
|
||
|
|
pub mod targets;
|
||
|
|
|
||
|
|
pub use generator::*;
|
||
|
|
pub use targets::*;
|