forgot to expose modules for use as external crate
This commit is contained in:
parent
dfc9f88e66
commit
75eac74f3f
@ -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
|
||||
* Each of one these funcs will implicitly do a single heap allocation which
|
||||
|
@ -1,8 +1,8 @@
|
||||
mod member;
|
||||
mod common;
|
||||
mod invites;
|
||||
mod channels;
|
||||
mod messages;
|
||||
pub mod member;
|
||||
pub mod common;
|
||||
pub mod invites;
|
||||
pub mod channels;
|
||||
pub mod messages;
|
||||
|
||||
use std::vec::Vec;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user