mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-02 17:21:22 +00:00
Nutomic
b96ce81f89
* Remove dependency of apub_lib on LemmyContext * Move ApubObject trait to library * Reorganize files in apub lib * Move ActorType, signatures, activity_queue to apub library
12 lines
237 B
Rust
12 lines
237 B
Rust
#[macro_use]
|
|
extern crate lazy_static;
|
|
|
|
pub mod activity_queue;
|
|
pub mod data;
|
|
pub mod signatures;
|
|
pub mod traits;
|
|
pub mod values;
|
|
pub mod verify;
|
|
pub mod webfinger;
|
|
|
|
pub static APUB_JSON_CONTENT_TYPE: &str = "application/activity+json";
|