nadeo_api_rs/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Create a [NadeoClient](auth::NadeoClient) to interact with the Nadeo API.
//!
//! Use [NadeoClient::create](auth::NadeoClient::create) to create a new client.
//!
//! You will also need to create [NadeoCredentials](auth::NadeoCredentials) and [UserAgentDetails](auth::UserAgentDetails) (see [auth::UserAgentDetails::new_autodetect])
//!
//! API methods are defined on traits: [live::LiveApiClient], [meet::MeetApiClient], [core::CoreApiClient].

pub mod auth;
#[allow(async_fn_in_trait)]
pub mod client;
#[allow(async_fn_in_trait)]
pub mod core;
#[allow(async_fn_in_trait)]
pub mod live;
#[allow(async_fn_in_trait)]
pub mod meet;
#[allow(async_fn_in_trait)]
pub mod oauth;
pub mod prelude;
#[cfg(test)]
pub mod test_helpers;
pub mod urls;