nahpu_api 0.1.0

An CLI and API client for NAHPU scientific specimen cataloging application.
Documentation
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");
    }
}