mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* refactor: workspace * chore: update collab rev * test: add data migration test * fix: test * fix: tauri build * test: fix bloc test * test: fix bloc test * test: fix bloc test * chore: restore magic codde
17 lines
253 B
Rust
17 lines
253 B
Rust
#[macro_use]
|
|
extern crate flowy_sqlite;
|
|
|
|
mod anon_user_upgrade;
|
|
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::*;
|
|
}
|