1//! Linear API client library for ADI.
23pub use auth::{ApiKeyAuth, AuthStrategy};
4pub use client::{Client, ClientBuilder};
5pub use error::{Error, Result};
6pub use graphql::GraphQLRequest;
7pub use types::*;
89mod auth;
10mod client;
11mod error;
12mod graphql;
13mod types;