Handle command line arguments and populate worktree

This commit is contained in:
Nathan Sobo 2021-03-18 17:54:35 -06:00
parent 9bab29c72f
commit f849857309
6 changed files with 93 additions and 45 deletions

View file

@ -1,6 +1,6 @@
mod editor;
pub mod editor;
mod operation_queue;
mod settings;
pub mod settings;
mod sum_tree;
#[cfg(test)]
mod test;
@ -8,5 +8,5 @@ mod time;
mod timer;
mod util;
mod watch;
mod workspace;
pub mod workspace;
mod worktree;