mirror of https://github.com/dswd/vpncloud.git
cloud -> engine
This commit is contained in:
parent
edd0e7a29f
commit
ff40f47b52
|
@ -16,7 +16,7 @@ pub mod util;
|
|||
#[macro_use]
|
||||
mod tests;
|
||||
pub mod beacon;
|
||||
pub mod cloud;
|
||||
pub mod engine;
|
||||
pub mod config;
|
||||
pub mod crypto;
|
||||
pub mod device;
|
||||
|
@ -46,7 +46,7 @@ use std::{
|
|||
};
|
||||
|
||||
use crate::{
|
||||
cloud::GenericCloud,
|
||||
engine::GenericCloud,
|
||||
config::{Args, Config},
|
||||
crypto::Crypto,
|
||||
device::{Device, TunTapDevice, Type},
|
||||
|
|
|
@ -17,7 +17,7 @@ use std::{
|
|||
};
|
||||
|
||||
pub use super::{
|
||||
cloud::GenericCloud,
|
||||
engine::GenericCloud,
|
||||
config::{Config, CryptoConfig},
|
||||
device::{MockDevice, Type},
|
||||
net::MockSocket,
|
||||
|
|
|
@ -10,7 +10,7 @@ use std::{
|
|||
};
|
||||
|
||||
use super::{
|
||||
cloud::{Hash, STATS_INTERVAL},
|
||||
engine::{Hash, STATS_INTERVAL},
|
||||
types::Address,
|
||||
util::{addr_nice, Bytes}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue