#![warn(missing_copy_implementations)]
#![warn(missing_debug_implementations)]
#![forbid(unsafe_code)]
pub mod client;
pub mod error;
pub(crate) mod gateway;
pub mod model;
pub mod prelude;
pub(crate) mod route;
use crate::route::Route;
const BASE_URL: &str = "https://discord.com/api";
const VERSION: &str = "v9";
const GATEWAY_VERSION: &str = "9";
fn request_url(route: Route) -> String {
format!("{}/{}/{}", &BASE_URL, &VERSION, route)
}