aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-ai/src/lib.rs
blob: f972d4ff6904ce772b60b612c387cba2d168a2e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 history_format;
pub(crate) mod permissions;
pub(crate) mod session;
pub(crate) mod skills;
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;