1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![feature(external_doc)]

#![doc(include = "../README.md")]

/// Authorization Flow & Utilities
pub mod auth;

/// Types that are used by the API
pub mod api_objects;

/// API request functions
pub mod api;