bing_client 0.1.2

Async reverse client for Bing copilot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[macro_export]
macro_rules! vec_string {
    ($($element:expr),*) => {
        {
            let mut temp_vec = Vec::new();
            $(
                temp_vec.push($element.to_string());
            )*
            temp_vec
        }
    };
}