10 lines
179 B
Rust
Raw Normal View History

pub mod app;
2021-11-09 16:00:09 +08:00
pub mod share;
pub mod trash;
pub mod view;
pub mod workspace;
2021-11-08 10:57:33 +08:00
pub mod prelude {
2021-11-09 16:00:09 +08:00
pub use crate::entities::{app::*, share::*, trash::*, view::*, workspace::*};
2021-11-08 10:57:33 +08:00
}