git_worktree_cli/lib.rs
1//! Git Worktree CLI - A tool for managing git worktrees efficiently
2//!
3//! This library provides the core functionality for the git worktree CLI tool,
4//! enabling easy creation, management, and removal of git worktrees.
5
6pub mod bitbucket_api;
7pub mod bitbucket_auth;
8pub mod bitbucket_data_center_api;
9pub mod bitbucket_data_center_auth;
10pub mod cli;
11pub mod commands;
12pub mod completions;
13pub mod config;
14pub mod constants;
15pub mod core;
16pub mod error;
17pub mod git;
18pub mod github;
19pub mod hooks;
20
21// Re-export commonly used types
22pub use cli::{Cli, Commands};
23pub use error::{Error, Result};