aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/atuin_client/mod.rs
blob: 7f07f2e2cd0cb778995bf5a3b35cdad73fe0e4b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#[cfg(feature = "sync")]
pub mod api_client;
#[cfg(feature = "sync")]
pub mod auth;
#[cfg(feature = "sync")]
pub mod login;
#[cfg(feature = "sync")]
pub mod register;
#[cfg(feature = "sync")]
pub mod sync;

pub mod database;
pub mod distro;
pub mod encryption;
pub mod history;
pub mod import;
pub mod logout;
pub mod meta;
pub mod ordering;
pub mod plugin;
pub mod record;
pub mod secrets;
pub mod settings;
pub mod theme;

mod utils;