1 2 3 4 5 6 7
pub mod query;
#[cfg(feature = "tokio_postgres")]
pub use tokio_postgres::Row;
pub trait Table
{
fn table_name() -> String;
}
1 2 3 4 5 6 7
pub mod query;
#[cfg(feature = "tokio_postgres")]
pub use tokio_postgres::Row;
pub trait Table
{
fn table_name() -> String;
}