create_rust_lib_template 0.1.0

_description_
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(test)]

use super::hello;

#[tokio::main]
#[test]
async fn hello_test() {
    assert_eq!(hello().await, "hello");
}