fast_vk/
lib.rs

1//! Library for fast data collection from [VK](https://vk.com)
2//! 
3//! By default, it provides relatively low-level [`Client::method`]
4//! However, there is `thisvk` feature avaible.
5//! With this feature you can call vk methods directly from [`Client`]. For details see [thisvk](https://docs.rs/thisvk/0/thisvk/).
6
7mod vk_error;
8pub use vk_error::VkError;
9pub(crate) use vk_error::VkResult;
10
11mod error;
12pub use error::Error;
13pub use error::Result;
14
15pub mod instance;
16pub use instance::Instance;
17
18mod client;
19pub use client::Client;
20
21pub use vk_method;