1#[macro_use]
2extern crate serde_derive;
3
4mod x;
5pub use x::{edit_snippet, start_operation, OpCode};
6
7mod project;
8pub use project::{Project, ProjectOperation};
9
10mod snippet;
11pub use snippet::Snippet;
12
13mod error;
14pub use error::Error;
15
16mod git;
17pub use git::*;