mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-15 20:31:38 +00:00
20 lines
284 B
Rust
20 lines
284 B
Rust
mod event;
|
|
mod handlers;
|
|
mod sql_tables;
|
|
|
|
pub mod entities;
|
|
pub mod errors;
|
|
pub mod module;
|
|
pub mod protobuf;
|
|
pub mod services;
|
|
|
|
#[macro_use]
|
|
extern crate flowy_database;
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
entities::*,
|
|
services::{user::*, workspace::*},
|
|
};
|
|
}
|