mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
27b1f00e17
* refactor: separate functions * feat: init user awareness object * test: create reminder event test * docs: add documentation
16 lines
230 B
Rust
16 lines
230 B
Rust
#[macro_use]
|
|
extern crate flowy_sqlite;
|
|
|
|
pub mod entities;
|
|
mod event_handler;
|
|
pub mod event_map;
|
|
pub mod manager;
|
|
mod migrations;
|
|
mod notification;
|
|
pub mod protobuf;
|
|
pub mod services;
|
|
|
|
pub mod errors {
|
|
pub use flowy_error::*;
|
|
}
|