mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 00:43:59 +00:00
23 lines
460 B
Rust
23 lines
460 B
Rust
|
use actix_web::web::Data;
|
||
|
use lemmy_utils::{ConnectionId, LemmyError};
|
||
|
use lemmy_websocket::LemmyContext;
|
||
|
|
||
|
mod comment;
|
||
|
mod community;
|
||
|
mod post;
|
||
|
mod private_message;
|
||
|
pub mod routes;
|
||
|
mod site;
|
||
|
mod user;
|
||
|
|
||
|
#[async_trait::async_trait(?Send)]
|
||
|
pub trait PerformCrud {
|
||
|
type Response: serde::ser::Serialize + Send;
|
||
|
|
||
|
async fn perform(
|
||
|
&self,
|
||
|
context: &Data<LemmyContext>,
|
||
|
websocket_id: Option<ConnectionId>,
|
||
|
) -> Result<Self::Response, LemmyError>;
|
||
|
}
|