//! Simple Replit Database clients.
//!
//! Provides two clients to interact with Replit DB, [`AsyncClient`] and [`SyncClient`]. The API is modeled after [the NodeJS client].
//!
//! [the NodeJS client]: https://www.npmjs.com/package/@replit/database
pub use Client as AsyncClient;
pub use Client as SyncClient;
const URL_VAR: &str = "REPLIT_DB_URL";