From 59947f6166054a30b387ca0307368a79c2f17452 Mon Sep 17 00:00:00 2001 From: glyph Date: Sun, 2 Oct 2022 17:11:14 +0100 Subject: [PATCH] add missing RelationshipQuery import --- part_2_subscribe_form/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/part_2_subscribe_form/README.md b/part_2_subscribe_form/README.md index ed07907..2bd1c48 100644 --- a/part_2_subscribe_form/README.md +++ b/part_2_subscribe_form/README.md @@ -345,6 +345,8 @@ In order to do this using the `golgi` RPC library, we have to construct a `Relat `src/sbot.rs` ```rust +use golgi::api::friends::RelationshipQuery; + pub async fn is_following(public_key_a: &str, public_key_b: &str) -> Result { let mut sbot = init_sbot().await?;