11 lines
155 B
Rust
Raw Normal View History

mod domain;
mod errors;
pub mod event;
mod handlers;
pub mod module;
mod protobuf;
2021-06-30 23:11:27 +08:00
pub mod prelude {
pub use crate::{domain::*, handlers::auth::*};
2021-06-30 23:11:27 +08:00
}