git_branch_stash/
lib.rs

1#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2#![warn(clippy::print_stderr)]
3#![warn(clippy::print_stdout)]
4
5pub mod config;
6
7pub use git::GitRepo;
8pub use snapshot::Branch;
9pub use snapshot::Snapshot;
10pub use stack::Stack;
11
12mod git;
13mod snapshot;
14mod stack;