rust-fcp/src/lib.rs

11 lines
129 B
Rust

mod types;
use types::fcp_types;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}