1 2 3 4 5 6 7 8 9 10
#[path = "parser/kerml.rs"] pub mod kerml; #[path = "parser/keywords.rs"] pub mod keywords; #[path = "parser/sysml.rs"] pub mod sysml; // Re-export for convenience pub use kerml::KerMLParser; pub use sysml::SysMLParser;