1
2
3
4
5
6
// Makes `Cell` and `Program` available from root e.g. `use ultnote::Program`
pub use self::program::{Cell, Program};

// Links the code from `handlers.rs` and `program.rs`
pub mod handlers;
pub mod program;