1
2
3
4
5
6
pub mod query;
pub use tokio_postgres::Row;
pub trait Table
{
	fn table_name() -> String;
}