mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 09:40:00 +00:00
8 lines
309 B
Rust
8 lines
309 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);
|