1// Makes `Cell` and `Program` available from root e.g. `use rustkernel::Program` 2pub use self::program::{Cell, Program}; 3 4// Links the code from `handlers.rs` and `program.rs` 5pub mod handlers; 6pub mod program;