1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#![warn(clippy::pedantic)] /// Dailymotion `OAuth2` pub mod auth; #[macro_use] pub mod api; #[macro_use] mod scopes; pub use scopes::*; mod env; pub use env::EnvironmentVariable; mod err; pub use err::{Error, Result};