hopr_db_entity/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::all)]
//! This lib re-exports SeaORM generated bindings for HOPR DB.

#[cfg_attr(rustfmt, rustfmt_skip)]
mod codegen;

pub mod conversions;

pub mod errors;

#[cfg(feature = "sqlite")]
#[cfg_attr(rustfmt, rustfmt_skip)]
pub use codegen::sqlite::*;