mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-23 09:33:01 +03:00
e59691d15f
Here we're squash-merging a branch that adds a new cli tool and some basic APIs for manipulating the data format of virtual branches as used by the frontend. * simple cli for showing data, including vbranches * can set and show the remote target default * basic list, new and move in API for frontend --------- Co-authored-by: Kiril Videlov <kiril@videlov.com> Co-authored-by: Nikita Galaiko <nikita@galaiko.rocks>
24 lines
391 B
Rust
24 lines
391 B
Rust
#[macro_use(defer)]
|
|
extern crate scopeguard;
|
|
|
|
pub mod app;
|
|
pub mod bookmarks;
|
|
pub mod database;
|
|
pub mod deltas;
|
|
pub mod events;
|
|
pub mod files;
|
|
pub mod fs;
|
|
pub mod gb_repository;
|
|
pub mod project_repository;
|
|
pub mod projects;
|
|
pub mod pty;
|
|
pub mod reader;
|
|
pub mod search;
|
|
pub mod sessions;
|
|
pub mod storage;
|
|
pub mod users;
|
|
pub mod virtual_branches;
|
|
pub mod watcher;
|
|
pub mod writer;
|
|
pub mod zip;
|