]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/activities/receive/comment.rs
Rename `lemmy_structs` to `lemmy_api_structs`
[lemmy.git] / crates / apub / src / activities / receive / comment.rs
index 6136f63bbeeeedf8e05f8c2f66222b38149448ce..591b6f33a279321378daf9fea0a7f95c7bb8f46d 100644 (file)
@@ -4,13 +4,13 @@ use activitystreams::{
   base::ExtendsExt,
 };
 use anyhow::Context;
+use lemmy_api_structs::{blocking, comment::CommentResponse, send_local_notifs};
 use lemmy_db_queries::{source::comment::Comment_, Crud, Likeable};
 use lemmy_db_schema::source::{
   comment::{Comment, CommentLike, CommentLikeForm},
   post::Post,
 };
 use lemmy_db_views::comment_view::CommentView;
-use lemmy_structs::{blocking, comment::CommentResponse, send_local_notifs};
 use lemmy_utils::{location_info, utils::scrape_text_for_mentions, LemmyError};
 use lemmy_websocket::{messages::SendComment, LemmyContext, UserOperation};