Stub out new 'init' command

This commit is contained in:
Lucien Greathouse
2019-01-09 11:23:00 -08:00
parent b26b36da5d
commit b62d946f83
3 changed files with 62 additions and 16 deletions

View File

@@ -180,7 +180,11 @@ pub struct Project {
}
impl Project {
pub fn init(_project_folder_location: &Path) -> Result<(), ProjectInitError> {
pub fn init_place(_project_fuzzy_location: &Path) -> Result<PathBuf, ProjectInitError> {
unimplemented!();
}
pub fn init_model(_project_fuzzy_location: &Path) -> Result<PathBuf, ProjectInitError> {
unimplemented!();
}