mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 17:42:16 +00:00
10 lines
139 B
Rust
10 lines
139 B
Rust
mod domain;
|
|
mod error;
|
|
mod handlers;
|
|
pub mod module;
|
|
mod protobuf;
|
|
|
|
pub mod prelude {
|
|
pub use crate::{domain::*, handlers::auth::*};
|
|
}
|