2021-10-28 21:17:59 +00:00
|
|
|
use crate::objects::community::ApubCommunity;
|
2022-11-28 14:29:33 +00:00
|
|
|
use lemmy_api_common::context::LemmyContext;
|
2021-10-28 21:17:59 +00:00
|
|
|
|
2021-10-27 16:03:07 +00:00
|
|
|
pub(crate) mod community_moderators;
|
|
|
|
pub(crate) mod community_outbox;
|
|
|
|
|
|
|
|
/// Put community in the data, so we dont have to read it again from the database.
|
|
|
|
pub(crate) struct CommunityContext(pub ApubCommunity, pub LemmyContext);
|