1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
pub mod archive; pub mod databases; pub fn test_lib() -> String { "Hello from NAHPU-API".to_string() } #[cfg(test)] mod tests { use super::*; #[test] fn it_works() { assert_eq!(test_lib(), "Hello from NAHPU-API"); } }