1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//!VNDB API Clients
//!
//!
//!# Available clients
//!
//!- `tokio` - Simple tokio based client. Requires to enable `tokio-client` feature

///VNDB Host
pub const API_HOST: &'static str = "api.vndb.org";
///VNDB SSL port
pub const API_SSL_PORT: u16 = 19535;

#[cfg(feature = "tokio-client")]
pub mod tokio;