AppFlowy/frontend/rust-lib/flowy-user/src/lib.rs

16 lines
230 B
Rust
Raw Normal View History

#[macro_use]
extern crate flowy_sqlite;
2022-07-04 06:53:35 +00:00
pub mod entities;
mod event_handler;
2022-01-28 02:56:55 +00:00
pub mod event_map;
pub mod manager;
mod migrations;
mod notification;
2021-08-19 14:48:10 +00:00
pub mod protobuf;
pub mod services;
2021-06-30 15:11:27 +00:00
2021-12-14 10:04:51 +00:00
pub mod errors {
pub use flowy_error::*;
2021-12-14 10:04:51 +00:00
}