rust-dominator/src/lib.rs

26 lines
305 B
Rust
Raw Normal View History

#![recursion_limit="128"]
2018-02-23 23:14:25 -05:00
2018-02-21 01:37:09 -05:00
#[macro_use]
extern crate stdweb;
#[macro_use]
extern crate stdweb_derive;
#[macro_use]
extern crate lazy_static;
extern crate futures;
mod dom;
pub use dom::*;
pub mod signal;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}