Skip to main content

jj_navi/
lib.rs

1#![warn(missing_docs)]
2
3//! `jj-navi` is a small CLI-focused library for navigating Jujutsu workspaces.
4//! It exposes the binary entrypoint plus a narrow set of formatting and domain
5//! types used by the test suite.
6
7mod app;
8mod cli;
9pub mod doctor;
10mod error;
11pub mod output;
12mod repo;
13pub mod types;
14
15/// Run the CLI binary entrypoint with the provided binary name and argv.
16pub use app::main as run;
17/// Crate-wide error type.
18pub use error::{Error, Result};