hopr_api/db/
mod.rs

1mod peers;
2
3mod protocol;
4
5mod tickets;
6
7pub use peers::*;
8pub use protocol::*;
9pub use tickets::*;
10
11/// Shorthand for the `chrono` based timestamp type used in the database.
12pub type DbTimestamp = chrono::DateTime<chrono::Utc>;