betfair_adapter/
lib.rs

1mod config;
2mod error;
3mod provider;
4mod secret;
5mod urls;
6
7pub use betfair_types;
8pub use config::BetfairConfigBuilder;
9pub use error::ApiError;
10pub use provider::authenticated::{BetfairRequest, BetfairResponse};
11pub use provider::{Authenticated, BetfairRpcClient, Unauthenticated};
12pub use secret::{ApplicationKey, Identity, Password, SecretProvider, SessionToken, Username};
13pub use urls::{
14    BetfairUrl, BotLogin, InteractiveLogin, KeepAlive, Logout, RestBase, RetrieveUrl, Stream,
15    jurisdiction,
16};