cloud -> engine

This commit is contained in:
Dennis Schwerdel 2020-12-20 23:53:26 +01:00
parent edd0e7a29f
commit ff40f47b52
4 changed files with 4 additions and 4 deletions

View File

@ -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},

View File

@ -17,7 +17,7 @@ use std::{
};
pub use super::{
cloud::GenericCloud,
engine::GenericCloud,
config::{Config, CryptoConfig},
device::{MockDevice, Type},
net::MockSocket,

View File

@ -10,7 +10,7 @@ use std::{
};
use super::{
cloud::{Hash, STATS_INTERVAL},
engine::{Hash, STATS_INTERVAL},
types::Address,
util::{addr_nice, Bytes}
};