use crateResult;
use Path;
use create_directory_safe;
/// Creates the initial directory shape for a Russel site
// Validates the shape of new Russel site directory. Used to check
// the directory was created successfully and is not in a broken state.
// pub fn validate_project_creation(name: &str) -> Result<()> {
// let root_path = Path::new(name);
//
// if !root_path.exists() {
// return Err(RussError::new_project(format!("Root directory was not created{}")));
// }
//
// Ok(())
// }