aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src/lib.rs
blob: d0f6ee7313d1086e4712e2316b70c94179c24c46 (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
#![forbid(unsafe_code)]

#[macro_use]
extern crate log;

#[cfg(feature = "sync")]
pub mod api_client;
#[cfg(feature = "sync")]
pub mod sync;

pub mod database;
pub mod encryption;
pub mod history;
pub mod import;
pub mod kv;
pub mod login;
pub mod logout;
pub mod ordering;
pub mod record;
pub mod register;
pub mod secrets;
pub mod settings;
pub mod theme;

mod utils;