aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/atuin_client/mod.rs
blob: 0ac294cf9b23b190e6904d58bd15f734a20ca714 (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(crate) mod api_client;
#[cfg(feature = "sync")]
pub(crate) mod auth;
#[cfg(feature = "sync")]
pub(crate) mod login;
#[cfg(feature = "sync")]
pub(crate) mod register;
#[cfg(feature = "sync")]
pub(crate) mod sync;

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

mod utils;