From a34e4b7e1f3c1174e545d3aeb0ddd78c4d99f5f1 Mon Sep 17 00:00:00 2001 From: nobody Date: Mon, 5 Aug 2024 14:09:35 +0200 Subject: [PATCH] reorder imports --- src/main.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index a2205ad..bc55e94 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,17 +34,18 @@ future improvements: */ // Import other .rs files as modules mod key_value; -use email::{Email, SimpleEmail}; use key_value::KeyValueStore as KV; mod config_spec; use config_spec::{CfgField, CfgGroup, CfgSpec}; + +pub mod variables_and_settings; + mod email; +use email::{Email, SimpleEmail}; mod hedgedoc; use hedgedoc::HedgeDoc; mod mediawiki; -pub mod variables_and_settings; - use std::borrow::Cow; use std::env; use std::error::Error;