reorder imports
This commit is contained in:
		
							parent
							
								
									0a992e2900
								
							
						
					
					
						commit
						a34e4b7e1f
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
					@ -34,17 +34,18 @@ future improvements:
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
// Import other .rs files as modules
 | 
					// Import other .rs files as modules
 | 
				
			||||||
mod key_value;
 | 
					mod key_value;
 | 
				
			||||||
use email::{Email, SimpleEmail};
 | 
					 | 
				
			||||||
use key_value::KeyValueStore as KV;
 | 
					use key_value::KeyValueStore as KV;
 | 
				
			||||||
mod config_spec;
 | 
					mod config_spec;
 | 
				
			||||||
use config_spec::{CfgField, CfgGroup, CfgSpec};
 | 
					use config_spec::{CfgField, CfgGroup, CfgSpec};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					pub mod variables_and_settings;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
mod email;
 | 
					mod email;
 | 
				
			||||||
 | 
					use email::{Email, SimpleEmail};
 | 
				
			||||||
mod hedgedoc;
 | 
					mod hedgedoc;
 | 
				
			||||||
use hedgedoc::HedgeDoc;
 | 
					use hedgedoc::HedgeDoc;
 | 
				
			||||||
mod mediawiki;
 | 
					mod mediawiki;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
pub mod variables_and_settings;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
use std::borrow::Cow;
 | 
					use std::borrow::Cow;
 | 
				
			||||||
use std::env;
 | 
					use std::env;
 | 
				
			||||||
use std::error::Error;
 | 
					use std::error::Error;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue