lemmy/crates/db_views/src/lib.rs

27 lines
624 B
Rust
Raw Normal View History

#[cfg(test)]
extern crate serial_test;
#[cfg(feature = "full")]
2020-12-16 20:03:03 -07:00
pub mod comment_report_view;
#[cfg(feature = "full")]
2020-12-15 08:28:25 -07:00
pub mod comment_view;
#[cfg(feature = "full")]
pub mod custom_emoji_view;
#[cfg(feature = "full")]
2021-03-10 21:43:11 -07:00
pub mod local_user_view;
#[cfg(feature = "full")]
2020-12-16 20:03:03 -07:00
pub mod post_report_view;
#[cfg(feature = "full")]
2020-12-10 13:53:49 -07:00
pub mod post_view;
#[cfg(feature = "full")]
pub mod private_message_report_view;
#[cfg(feature = "full")]
2020-12-16 15:16:48 -07:00
pub mod private_message_view;
#[cfg(feature = "full")]
pub mod registration_application_view;
#[cfg(feature = "full")]
2020-12-02 12:32:47 -07:00
pub mod site_view;
pub mod structs;
#[cfg(feature = "full")]
pub mod vote_view;