Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

pub mod error;
pub mod http;
mod macros;
pub mod model;
mod vndb;

pub use http::Endpoint;
pub use model::prelude::*;
pub use vndb::{Token, Vndb};