lemmy/crates/db_schema/src/aggregates/mod.rs

14 lines
334 B
Rust
Raw Normal View History

#[cfg(feature = "full")]
2020-12-15 15:28:25 +00:00
pub mod comment_aggregates;
#[cfg(feature = "full")]
2020-12-04 21:35:46 +00:00
pub mod community_aggregates;
#[cfg(feature = "full")]
2021-03-11 04:43:11 +00:00
pub mod person_aggregates;
#[cfg(feature = "full")]
pub mod person_post_aggregates;
#[cfg(feature = "full")]
2020-12-10 20:53:49 +00:00
pub mod post_aggregates;
#[cfg(feature = "full")]
2020-12-03 18:39:56 +00:00
pub mod site_aggregates;
pub mod structs;