faucet_source_rest/
lib.rs1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3pub mod auth;
9pub mod config;
10pub mod extract;
11pub mod pagination;
12pub mod retry;
13pub mod serde_helpers;
14pub mod stream;
15
16pub use faucet_core::{
18 FaucetError, RecordTransform, ReplicationMethod, Sink, Source, replication, schema, transform,
19};
20
21pub use auth::oauth2::DEFAULT_EXPIRY_RATIO;
22pub use auth::token_endpoint::DEFAULT_TOKEN_ENDPOINT_EXPIRY_RATIO;
23pub use auth::{Auth, ResponseValidator, fetch_oauth2_token, fetch_token_from_endpoint};
24pub use config::RestStreamConfig;
25pub use pagination::PaginationStyle;
26pub use stream::RestStream;