mirror of
https://github.com/rm-dr/daisy
synced 2025-10-10 12:02:39 -07:00
16 lines
212 B
Rust
16 lines
212 B
Rust
pub mod parser;
|
|
pub mod command;
|
|
pub mod quantity;
|
|
pub mod evaluate;
|
|
pub mod context;
|
|
|
|
mod entry;
|
|
use crate::entry::main_e;
|
|
|
|
fn main() -> Result<(), std::io::Error> {
|
|
return main_e();
|
|
}
|
|
|
|
|
|
#[cfg(test)]
|
|
mod tests; |