From c2ac577dce74938c131fc219988f84000caa7ac1 Mon Sep 17 00:00:00 2001 From: "Aode (lion)" Date: Mon, 29 Nov 2021 17:44:38 -0600 Subject: [PATCH] core: make Out type public --- apub-core/src/activitypub_ext.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apub-core/src/activitypub_ext.rs b/apub-core/src/activitypub_ext.rs index 4d8a248..655fc0a 100644 --- a/apub-core/src/activitypub_ext.rs +++ b/apub-core/src/activitypub_ext.rs @@ -9,7 +9,8 @@ use crate::{ use std::{rc::Rc, sync::Arc}; use url::Url; -type Out = ::Output; +/// Simplification for ::Output +pub type Out = ::Output; /// An extension of Activity that is aware of it's Actor and Object types #[async_trait::async_trait(?Send)]