rohas-parser 0.1.0

Parser for Rohas schema files (.ro) defining APIs, events, models, and cron jobs
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod ast;
pub mod error;
pub mod grammar;
pub mod parser;

pub use ast::*;
pub use error::{ParseError, Result};
pub use parser::Parser;

#[cfg(test)]
mod tests;