1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#![feature(unboxed_closures, fn_traits, thread_id_value, const_fn_fn_ptr_basics)] pub use handler::*; pub use sandbox::*; mod handler; mod sandbox; #[cfg(test)] mod tests { #[test] fn it_works() { let result = 2 + 2; assert_eq!(result, 4); } }