mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-12 11:36:04 +00:00

* refactor: traits * feat: import data * chore: track database view * fix: import * refactor: collab doc state * refactor: get collab doc state * feat: batch create collab object * fix: test * ci: run docker compose if the server is not up * chore: bump collab * chore: update ci * chore: update ci * chore: update ci * chore: implement ui * chore: implement ui * chore: implement ui
17 lines
245 B
Rust
17 lines
245 B
Rust
#[macro_use]
|
|
extern crate flowy_sqlite;
|
|
|
|
mod anon_user;
|
|
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::*;
|
|
}
|