1#![deny(unused_must_use)]
16
17pub mod cleanup_guard;
18pub mod cli_util;
19pub mod command_error;
20pub mod commands;
21pub mod commit_ref_list;
22pub mod commit_templater;
23pub mod complete;
24pub mod config;
25pub mod description_util;
26pub mod diff_util;
27pub mod formatter;
28pub mod generic_templater;
29#[cfg(feature = "git")]
30pub mod git_util;
31#[cfg(not(feature = "git"))]
32pub mod git_util {
35 use jj_lib::repo::ReadonlyRepo;
36 use jj_lib::workspace::Workspace;
37
38 pub fn is_colocated_git_workspace(_workspace: &Workspace, _repo: &ReadonlyRepo) -> bool {
39 false
40 }
41}
42pub mod graphlog;
43pub mod merge_tools;
44pub mod movement_util;
45pub mod operation_templater;
46mod progress;
47pub mod revset_util;
48pub mod template_builder;
49pub mod template_parser;
50pub mod templater;
51pub mod text_util;
52pub mod time_util;
53pub mod ui;