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

10 lines
161 B
Rust
Raw Normal View History

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