reorder imports
This commit is contained in:
parent
0a992e2900
commit
a34e4b7e1f
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue