aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-ai/src/lib.rs
blob: 289f6ea26aec703daa59e018f4d0f7dc19dbcff0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod commands;
pub(crate) mod context;
pub(crate) mod context_window;
pub(crate) mod diff;
pub(crate) mod driver;
pub(crate) mod edit_permissions;
pub(crate) mod event_serde;
pub(crate) mod file_tracker;
pub(crate) mod fsm;
pub(crate) mod permissions;
pub(crate) mod session;
pub(crate) mod snapshots;
pub(crate) mod store;
pub(crate) mod stream;
pub(crate) mod tools;
pub(crate) mod tui;
pub(crate) mod user_context;