mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-19 15:41:31 +03:00
26c39f2a3f
This better expresses what it does, and leaves the `gitbutler-app` in the top-level where it can serve as visible entrypoint.
15 lines
332 B
Rust
15 lines
332 B
Rust
pub mod controller;
|
|
mod iterator;
|
|
mod reader;
|
|
pub mod session;
|
|
mod writer;
|
|
|
|
pub mod database;
|
|
|
|
pub use controller::Controller;
|
|
pub use database::Database;
|
|
pub use iterator::SessionsIterator;
|
|
pub use reader::SessionReader as Reader;
|
|
pub use session::{Meta, Session, SessionError, SessionId};
|
|
pub use writer::SessionWriter as Writer;
|