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] #[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},

View File

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

View File

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