//! # RAOS
//!
//! ## In development
//!
//! **R**ust **A**sync **O**auth **S**erver
//! A rust-based oauth2.1 server library,
//! that strictly follows [the draft](https://www.ietf.org/archive/id/draft-ietf-oauth-v2-1-11.html)
//! (draft-ietf-oauth-v2-1-11) at time of writing.
pub use async_trait;
/// The authorization module handles the authorization code flow.
/// The builder module contains the builder for the manager.
/// The common module contains common types used throughout the library.
/// The manager module contains the OAuthManager.
/// Test module, contains test support code, unit tests and integration tests.
/// The token module contains the token provider trait, validation and flow.