atuin_client/lib.rs
1#![deny(unsafe_code)]
2
3#[macro_use]
4extern crate log;
5
6#[cfg(feature = "sync")]
7pub mod api_client;
8#[cfg(feature = "sync")]
9pub mod sync;
10
11pub mod database;
12pub mod encryption;
13pub mod history;
14pub mod import;
15pub mod login;
16pub mod logout;
17pub mod ordering;
18pub mod record;
19pub mod register;
20pub mod secrets;
21pub mod settings;
22pub mod theme;
23
24mod utils;