ap-relay 0.3.122

A simple activitypub relay
1
2
3
use std::{future::Future, pin::Pin};

pub(crate) type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;