1 2 3 4 5 6 7 8 9 10 11 12 13
pub mod query; pub use tokio_postgres::Row; pub trait Table { fn table_name() -> String; } pub trait Index { fn index() -> Option<String> { None } }