AppFlowy/frontend/rust-lib/flowy-user/src/lib.rs
Nathan.fooo 27b1f00e17
feat: user awareness (#3185)
* refactor: separate functions

* feat: init user awareness object

* test: create reminder event test

* docs: add documentation
2023-08-14 12:57:59 +08:00

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::*;
}