Add editor/ crate

This commit is contained in:
Richard Feldman 2020-05-03 21:38:36 -04:00
parent ce9e7a91f6
commit 50357acd55
4 changed files with 101 additions and 0 deletions

8
editor/src/lib.rs Normal file
View file

@ -0,0 +1,8 @@
use std::io;
/// The editor is actually launched from the CLI if you pass it zero arguments.
pub fn launch() -> io::Result<()> {
println!("TODO launch the editor.");
Ok(())
}