Skip to main content

worktree_io/
lib.rs

1//! `worktree-io` — open GitHub, Linear, and local Centy issues as git worktree workspaces.
2
3/// Configuration loading and serialization.
4pub mod config;
5/// Git operations: cloning, fetching, branch detection, and worktree creation.
6pub mod git;
7/// Pre/post-open hook execution.
8pub mod hooks;
9/// Issue reference types and parsing.
10pub mod issue;
11/// Editor and terminal openers.
12pub mod opener;
13/// `worktree://` URL scheme registration.
14pub mod scheme;
15/// Workspace creation and lifecycle.
16pub mod workspace;
17
18pub use config::Config;
19pub use issue::{DeepLinkOptions, IssueRef};
20pub use workspace::Workspace;