rustem_proxy 0.1.0

A rust library to set system proxy on different operating systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# rustem_proxy


## Usage


Example:

```rust
use rustem_proxy::SystemProxy;

SystemProxy::set(SystemProxy {
    is_enabled: true,
    host: "127.0.0.1".to_string(),
    port: 61001,
    bypass: "".to_string(),
    protocol: rustem_proxy::Protocol::HTTP,
});
```