feat(activitypub): ThoughtNote AP object and ThoughtsObjectHandler

This commit is contained in:
2026-05-14 10:23:35 +02:00
parent 21b6a04f97
commit 2080fec347
5 changed files with 270 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
pub mod handler;
pub mod note;
pub mod urls;
pub use handler::ThoughtsObjectHandler;
pub use note::ThoughtNote;
pub use urls::ThoughtsUrls;