#![allow(unused_imports)]
#![allow(clippy::too_many_arguments)]
extern crate serde_repr;
extern crate serde;
extern crate serde_json;
extern crate url;
extern crate reqwest;
pub mod apis;
pub mod models;
#[cfg(test)]
mod tests {
use super::*;
#[tokio::test]
async fn get_project() {
let result =
apis::projects_api::get_project(&apis::configuration::Configuration::default(), "sodium")
.await
.unwrap();
assert_eq!(result.id, "AANobbMI");
}
}