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