mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-19 07:03:37 +00:00

* chore: only import user workspace * chore: apply migration if need * chore remove unused code * chore: store first time installed version * chore: clippy
16 lines
235 B
Rust
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::*;
|
|
}
|