nexgenomics 0.2.6

The official Rust crate for NexGenomics
Documentation

// tests/agents.rs


use nexgenomics::agents;

#[tokio::test]
#[cfg(feature="async")]
async fn test_agents() {
    let r = agents::get_agents().await.unwrap();
    println!("ASYNC GET AGENTS ^^^ {:#?} &&&&",r)

}

#[test]
#[cfg(feature="blocking")]
fn test_agents() {
    let r = agents::get_agents().unwrap();
    println!("BLOCKING GET AGENTS ^^^ {:#?} &&&&",r)
}