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
|
* 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
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user