proxyster-lib 0.1.1

The proxyster library and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde_derive::Deserialize;

use crate::provider::Provider;

/**
 The config file
*/
#[derive(Deserialize)]
pub struct Config {
    pub providers: Vec<Provider>,
}