10 lines
161 B
Rust
Raw Normal View History

mod domain;
mod error;
mod handlers;
pub mod module;
mod protobuf;
2021-06-30 23:11:27 +08:00
pub mod prelude {
2021-07-06 14:14:47 +08:00
pub use crate::{domain::*, handlers::auth::*, module::UserEvent::*};
2021-06-30 23:11:27 +08:00
}