1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#[macro_use]
extern crate anyhow;
#[macro_use]
extern crate log;
pub use odbc_api;
pub mod debug;
pub mod executor;
pub mod extension;
pub use debug::print_all_tables;
pub trait Convert<T>: Sized {
fn convert(self) -> T;
}