Nathan.fooo e6357a9d6c
chore: optimize import appflowy data (#6671)
* chore: only import user workspace

* chore: apply migration if need

* chore remove unused code

* chore: store first time installed version

* chore: clippy
2024-10-31 13:02:54 +08:00

16 lines
235 B
Rust

#[macro_use]
extern crate flowy_sqlite;
pub mod entities;
mod event_handler;
pub mod event_map;
mod migrations;
mod notification;
pub mod protobuf;
pub mod services;
pub mod user_manager;
pub mod errors {
pub use flowy_error::*;
}