Skip to main content

schema_to_emmylua/
lib.rs

1mod converter;
2mod lua_emitter;
3mod markdown_doc;
4mod schema_walker;
5
6pub use converter::SchemaConverter;
7
8pub struct ConvertResult {
9    pub annotation_text: String,
10    pub root_type_name: String,
11}