From e568927d4ba9c29447aa5b1633f7baeba67d2085 Mon Sep 17 00:00:00 2001 From: fef Date: Thu, 22 Dec 2022 13:36:48 +0100 Subject: [PATCH] ap: add well-known NS URIs --- src/ap/context.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ap/context.rs b/src/ap/context.rs index 373d23e..2735b11 100644 --- a/src/ap/context.rs +++ b/src/ap/context.rs @@ -14,6 +14,8 @@ pub struct Context { pub mod uri { pub static ACTIVITY_STREAMS: &'static str = "https://www.w3.org/ns/activitystreams"; pub static ACTIVITY_STREAMS_ALT: &'static str = "http://www.w3.org/ns/activitystreams"; + pub static NYANO: &'static str = "https://nyanoblog.org/ns/activitystreams"; + pub static TOOT: &'static str = "http://joinmastodon.org/ns#"; } #[derive(Clone)]