8 lines
308 B
Rust
8 lines
308 B
Rust
|
use crate::objects::community::ApubCommunity;
|
||
|
use lemmy_websocket::LemmyContext;
|
||
|
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);
|