summaryrefslogtreecommitdiffhomepage
path: root/talpid-openvpn-plugin/src/processing.rs
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2018-11-07 18:39:13 +0100
committerLinus Färnstrand <linus@mullvad.net>2018-11-07 18:44:40 +0100
commit64f5381ffeb91814e08275eb7af2216094818218 (patch)
tree0b05601ce69dff6bf039da2729b12e078022a8e9 /talpid-openvpn-plugin/src/processing.rs
parent548d58888441b2a7ae017bd4e52e5b12ae059969 (diff)
downloadmullvadvpn-64f5381ffeb91814e08275eb7af2216094818218.tar.xz
mullvadvpn-64f5381ffeb91814e08275eb7af2216094818218.zip
Update paths to start with crate:: etc
Diffstat (limited to 'talpid-openvpn-plugin/src/processing.rs')
-rw-r--r--talpid-openvpn-plugin/src/processing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid-openvpn-plugin/src/processing.rs b/talpid-openvpn-plugin/src/processing.rs
index 900340820c..bc896cc3b3 100644
--- a/talpid-openvpn-plugin/src/processing.rs
+++ b/talpid-openvpn-plugin/src/processing.rs
@@ -1,11 +1,11 @@
extern crate futures;
use super::Arguments;
+use crate::openvpn_plugin;
use jsonrpc_client_core::{
expand_params, jsonrpc_client, Future, Result as ClientResult, Transport,
};
use jsonrpc_client_ipc::IpcTransport;
-use openvpn_plugin;
use std::{collections::HashMap, thread};
use tokio::{reactor::Handle, runtime::Runtime};