mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-21 08:31:40 +03:00
21 lines
332 B
Rust
21 lines
332 B
Rust
//! GitButler internal library containing functionaliry related to branches, i.e. the virtual branches implementation
|
|
pub mod controller;
|
|
pub use controller::Controller;
|
|
|
|
pub mod r#virtual;
|
|
pub use r#virtual::*;
|
|
|
|
pub mod assets;
|
|
|
|
pub mod base;
|
|
|
|
pub mod integration;
|
|
|
|
pub mod files;
|
|
|
|
pub mod remote;
|
|
|
|
pub mod conflicts;
|
|
|
|
mod author;
|