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]
|
#[macro_use]
|
||||||
mod tests;
|
mod tests;
|
||||||
pub mod beacon;
|
pub mod beacon;
|
||||||
pub mod cloud;
|
pub mod engine;
|
||||||
pub mod config;
|
pub mod config;
|
||||||
pub mod crypto;
|
pub mod crypto;
|
||||||
pub mod device;
|
pub mod device;
|
||||||
|
@ -46,7 +46,7 @@ use std::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
cloud::GenericCloud,
|
engine::GenericCloud,
|
||||||
config::{Args, Config},
|
config::{Args, Config},
|
||||||
crypto::Crypto,
|
crypto::Crypto,
|
||||||
device::{Device, TunTapDevice, Type},
|
device::{Device, TunTapDevice, Type},
|
||||||
|
|
|
@ -17,7 +17,7 @@ use std::{
|
||||||
};
|
};
|
||||||
|
|
||||||
pub use super::{
|
pub use super::{
|
||||||
cloud::GenericCloud,
|
engine::GenericCloud,
|
||||||
config::{Config, CryptoConfig},
|
config::{Config, CryptoConfig},
|
||||||
device::{MockDevice, Type},
|
device::{MockDevice, Type},
|
||||||
net::MockSocket,
|
net::MockSocket,
|
||||||
|
|
|
@ -10,7 +10,7 @@ use std::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
cloud::{Hash, STATS_INTERVAL},
|
engine::{Hash, STATS_INTERVAL},
|
||||||
types::Address,
|
types::Address,
|
||||||
util::{addr_nice, Bytes}
|
util::{addr_nice, Bytes}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue