lemmy/crates/db_views_actor/src/lib.rs

22 lines
557 B
Rust
Raw Normal View History

#[cfg(feature = "full")]
pub mod comment_reply_view;
#[cfg(feature = "full")]
pub mod community_block_view;
#[cfg(feature = "full")]
2020-12-16 21:28:18 +00:00
pub mod community_follower_view;
#[cfg(feature = "full")]
2020-12-16 21:28:18 +00:00
pub mod community_moderator_view;
#[cfg(feature = "full")]
2021-03-10 22:33:55 +00:00
pub mod community_person_ban_view;
#[cfg(feature = "full")]
2020-12-16 21:28:18 +00:00
pub mod community_view;
#[cfg(feature = "full")]
pub mod instance_block_view;
#[cfg(feature = "full")]
pub mod person_block_view;
#[cfg(feature = "full")]
2021-03-10 22:33:55 +00:00
pub mod person_mention_view;
#[cfg(feature = "full")]
2021-03-10 22:33:55 +00:00
pub mod person_view;
pub mod structs;