dkdc-bookmarks 0.1.2

Bookmarks in your filesystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod cli;
pub mod config;
pub mod open;
pub mod storage;
pub mod strings;
pub mod toml_storage;

#[cfg(feature = "app")]
pub mod app;
#[cfg(feature = "webapp")]
pub mod webapp;

pub use cli::run;
pub use config::Config;
pub use storage::Storage;
pub use toml_storage::TomlStorage;