mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9 lines
132 B
Rust
9 lines
132 B
Rust
#![allow(clippy::module_inception)]
|
|
mod boxed;
|
|
mod handler;
|
|
mod service;
|
|
|
|
pub use boxed::*;
|
|
pub use handler::*;
|
|
pub use service::*;
|