mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-30 04:21:45 +00:00
14 lines
197 B
Rust
14 lines
197 B
Rust
mod domain;
|
|
mod error;
|
|
pub mod event;
|
|
mod handlers;
|
|
pub mod module;
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
domain::*,
|
|
event::{UserEvent::*, *},
|
|
handlers::auth::*,
|
|
};
|
|
}
|