summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 0e91afd..80e6ec9 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -29,11 +29,11 @@ extern crate pidlock;
#[macro_use] extern crate add_getters_setters;
#[macro_use] extern crate structopt;
-mod app;
mod cli;
mod configuration;
mod gui;
mod model;
+mod middleware;
mod server;
mod types;
mod version;
@@ -54,10 +54,10 @@ use anyhow::Result;
use anyhow::Error;
use env_logger::Env;
-use crate::app::App;
use crate::cli::*;
use crate::configuration::Configuration;
use crate::model::Model;
+use crate::middleware::Middleware;
use crate::types::block::Block;
use crate::types::content::Content;
use crate::types::payload::Payload;