ffbm/lib.rs
1#![doc = include_str!("../README.md")]
2#![forbid(unsafe_code)]
3
4mod db;
5mod error;
6mod export;
7mod import;
8mod profile;
9mod types;
10
11pub use error::{Error, Result};
12pub use export::{ExportStats, export_bookmarks};
13pub use import::{ImportStats, import_bookmarks};
14pub use profile::{check_firefox_not_running, find_profile, list_profiles};
15pub use types::{Bookmark, Profile, Separator};