forgot to expose modules for use as external crate

This commit is contained in:
shockrah 2020-10-10 19:53:33 -07:00
parent dfc9f88e66
commit 75eac74f3f
2 changed files with 12 additions and 5 deletions

View File

@ -18,6 +18,13 @@ macro_rules! sql_err {
} }
} }
#[macro_export]
macro_rules! sql_err_log {
($spec:expr) => {
println!($spec);
}
}
/* /*
* NOTE: pay attention to work on async in traits for rust * NOTE: pay attention to work on async in traits for rust
* Each of one these funcs will implicitly do a single heap allocation which * Each of one these funcs will implicitly do a single heap allocation which

View File

@ -1,8 +1,8 @@
mod member; pub mod member;
mod common; pub mod common;
mod invites; pub mod invites;
mod channels; pub mod channels;
mod messages; pub mod messages;
use std::vec::Vec; use std::vec::Vec;