1 2 3 4 5 6 7 8 9 10 11
//! GitLab API client library for ADI. pub use auth::{AuthStrategy, JobTokenAuth, OAuthAuth, PrivateTokenAuth}; pub use client::{Client, ClientBuilder}; pub use error::{Error, Result}; pub use types::*; mod auth; mod client; mod error; mod types;