lib.rs 406 B

12345678910111213141516171819202122232425
  1. pub mod entities;
  2. pub mod event_map;
  3. pub mod services;
  4. #[macro_use]
  5. mod macros;
  6. #[macro_use]
  7. extern crate flowy_sqlite;
  8. pub mod manager;
  9. mod notification;
  10. pub mod protobuf;
  11. mod util;
  12. #[cfg(feature = "flowy_unit_test")]
  13. pub mod test_helper;
  14. pub mod prelude {
  15. pub use crate::{errors::*, event_map::*};
  16. }
  17. pub mod errors {
  18. pub use flowy_error::{internal_error, ErrorCode, FlowyError, FlowyResult};
  19. }