assertion failed solved_all

This commit is contained in:
Anton-4 2021-09-09 16:55:30 +02:00
parent d922d72d83
commit db4f788076
7 changed files with 89 additions and 59 deletions

View file

@ -17,6 +17,6 @@ mod window;
use std::io;
use std::path::Path;
pub fn launch(filepaths: &[&Path]) -> io::Result<()> {
editor::main::launch(filepaths)
pub fn launch(project_dir_path_opt: Option<&Path>) -> io::Result<()> {
editor::main::launch(project_dir_path_opt)
}