safe-vk 0.3.3-alpha

A simple library to create your own vk bot for conversations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{
    __method,
    api::{MethodBuilder, SaveMessagesPhotoMethod, Write},
};

impl MethodBuilder<SaveMessagesPhotoMethod> {
    __method! {
        fn server(id: i32)
        fn hash(hash: &str)
        fn photo(info: &str)
    }
}