AppFlowy/rust-lib/flowy-user/src/lib.rs

15 lines
211 B
Rust
Raw Normal View History

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