this-me 0.1.6

Encrypted identity store CLI tool (this.me)
Documentation
1
2
3
4
5
6
7
8
9
10
// this.me/src/db/mod.rs
// by suiGn
#[cfg(feature = "pg")]
pub mod pg;
#[cfg(feature = "sqlite")]
pub mod migrate_schema;
#[cfg(feature = "sqlite")]
pub mod db;
#[cfg(feature = "sqlite")]
pub use db::connect;