AppFlowy/frontend/rust-lib/flowy-document/src/lib.rs
2021-12-14 18:20:07 +08:00

13 lines
209 B
Rust

pub mod module;
mod notify;
pub mod protobuf;
pub mod services;
mod sql_tables;
#[macro_use]
extern crate flowy_database;
pub mod errors {
pub use flowy_error::{internal_error, ErrorCode, FlowyError};
}